Django - “no module named django.core.management”
I get the following error when trying to run Django from the command line.
File manage.py, line 8, infrom django.core.management import execute_from_command_line
ImportError: No module named django.core.management
Any ideas on how to solve the error “from django.core.management import execute_from_command_line”?
To resolve this error, you can use:
sudo pip install django --upgrade