I have installed Django after activating my virtualenv but still I am getting following error
from django.core.management import execute_from_command_line Import
I am using virtual environment so I added this line in manage.py:
manage.py
sys.path.append('./myvenv/lib/python3.5/site-packages')
in which myvenv is the name of my virtual environment and version of my installed Python is 3.5. This solved my issued.
myvenv
3.5