当前位置: 代码迷 >> 综合 >> python: can't open file 'manage.py'
  详细解决方案

python: can't open file 'manage.py'

热度:21   发布时间:2023-12-12 06:02:55.0

当我们出现类似于can't open file 'manage.py'错误时(其他.py)文件类似。

一般是由于我们此时路径错误,即当前路径下没有对应的.py文件。

在linux下我们可以通过ls -lrt等相关命令去查找我们创建工程的目录,然后cd进入。

举个例子:通过django-admin.py startproject myproject       myproject为我项目目录创建了项目。此时直接输入

python manage.py会出现can't open file 'manage.py',原因是我当前目录并不是我们存放manage.py

的目录,此时可以cd myproject

在window下可通过文件检索,右键对应文件属性查看路径然后进入

  相关解决方案