ImportError: Couldn't import Django -
i've configured virtualenv in pycharm, when using python manage.py command, error shown:
e:\video course\python\code\web_worker\mxonline>python manage.py runserver traceback (most recent call last): file "manage.py", line 17, in <module> "couldn't import django. sure it's installed , " importerror: couldn't import django. sure it's installed , available on pythonpath environment variable? did forget activate virtual environment?
how should fix it, i've installed django.
you need install django
, error giving because django not installed.
pip install django
Comments
Post a Comment