ImportError: Couldn't import Django

前端 未结 22 1915
无人共我
无人共我 2020-12-05 01:59

I\'ve already configured virtualenv in pycharm, when using the python manage.py command, this is error shown:

E:\\video course\\Python\\code\\web_worker\\MxO         


        
22条回答
  •  渐次进展
    2020-12-05 02:44

    You need to install Django, this error is giving because django is not installed.

    pip install django
    

提交回复
热议问题