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?
错误信息:
1 2 3 4 5 6 7 8 9 10 11 12 13
PS F:\mysite\mysite> python manage.py runserver Traceback (most recent call last): File "manage.py", line 8, in <module> 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 10, in <module> raise ImportError( 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? PS F:\mysite\mysite>
错误信息翻译:
不能导入Django,您确定PYTHONPATH环境变量已安装并可用吗?您是否忘记激活虚拟环境?
查看环境变量
发现系统的环境变量PATH里没有python,然后去用户环境变量,发现PAYH内容如下:
用户PATH内容
D:\anaconda3
D:\anaconda3\Library\mingw-w64\bin
D:\anaconda3\Library\usr\bin
D:\anaconda3\Library\bin
D:\anaconda3\Scripts
D:\python\Scripts\
D:\python\
这样先找的就是anaconda里的python
解决方法
将D:\python\上移到第一个,然后确定。
用户PATH更改后
D:\python\
D:\anaconda3
D:\anaconda3\Library\mingw-w64\bin
D:\anaconda3\Library\usr\bin
D:\anaconda3\Library\bin
D:\anaconda3\Scripts
D:\python\Scripts\
重启VSCode
1 2 3 4 5 6 7 8 9 10
PS F:\mysite\mysite> python manage.py runserver Watching for file changes with StatReloader Performing system checks...
System check identified no issues (0 silenced). October 13, 2021 - 11:25:26 Django version 3.0, using settings 'mysite.settings' Starting development server at http://127.0.0.1:8000/ Quit the server with CTRL-BREAK.