2👍
I solved the problem.
Modify this file: \Python38\Lib\site-packages\suit\widgets.py
# from django.contrib.admin.templatetags.admin_static import static
from django.contrib.admin import static
then rerun your program, maybe met problem below:
File "D:\Work_Station\Python38\lib\site-packages\suit\templatetags\suit_menu.py", line 17, in <module>
string_types = basestring,
NameError: name 'basestring' is not defined
modify the file : Python38\lib\site-packages\suit\templatetags\suit_menu.py
# from django.utils.six import string_types
from six import string_types
Source:stackexchange.com