具体报错如下: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?

经过分析,因为是我有多个python系统路径,最上一行的python中没有django

解决办法:调整python路径,将有django的python路径上移到最前面,注意,调整系统路径后,要重启cmd环境,然后再进入django项目目录下运行

python manage.py runserver 

成功: