1👍
✅
This error means django cannot find a package named djangocms_admin_style
. It seems like you are using django-admin-shortcuts
. In that case you have to make sure that djangocms_admin_style
and djangocms_admin_style
to INSTALLED_APPS
of your settings.py
after installing djangocms_admin_style with pip`. Use command below to install djangocms_admin_style
pip install djangocms_admin_style
as per docs add 'djangocms_admin_style' to your INSTALLED_APPS just before 'django.contrib.admin'
Source:stackexchange.com