I've used the following tutorial. I used the command
pip install django-import-export
, then added to the Installed Apps section.
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'import_export',
'frontend',
'userauth',
'methods',
]
When I run python manage.py collectstatic
I get error ModuleNotFoundError: No module named 'import_export'
pip install
andmanage.py
in the same virtual env. – Advertising