python can't open file 'manage.py': [Errno 2] No such file or directory
问题原因:
我的python是放在C盘的,而我的django项目是放在D盘的,直接执行python manage.py runserver,他找的是C盘的manage.py。
解决方法:
1.指定项目路径
python D:\py\test2\mysite\manage.py runserver
2.cd mysite目录
问题原因:
我的python是放在C盘的,而我的django项目是放在D盘的,直接执行python manage.py runserver,他找的是C盘的manage.py。
解决方法:
1.指定项目路径
python D:\py\test2\mysite\manage.py runserver
2.cd mysite目录