python运行服务器不能在pycharm中工作,并给出这个错误,即使我已经在语言和框架Django标签中设置了manage.py。可能是什么?
(venv) C:\Users\ionezation\PycharmProjects\ecomesite\ecs>python manage.py runserver
Traceback (most recent call last):
File "manage.py", line 10, in main
from django.core.management import execute_from_command_line
ModuleNotFoundError: No module named 'django'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "manage.py", line 21, in <module>
main()
File "manage.py", line 16, in main
) from exc
ImportError: Couldn't import Django. Are you sure it's installed and available on your PYTHONPATH environment variable? Did you forget to activate a virtual environment?发布于 2019-04-03 18:28:19
似乎您需要指定python解释器文件->设置->项目->项目解释器->图标齿轮->添加->现有环境
https://stackoverflow.com/questions/55492623
复制相似问题