无法在代码行

时间:2016-02-28 02:29:54

标签: python django codeship

我一直在尝试使用Codeship构建我的django项目,如下所述:Codeship Blog

这些是我的设置命令:

pip install -r requirements.txt
python manage.py runserver
tar -czf release-backend.tgz .*

我的requirements.txt包含Django==1.8.0

但是,在codeship上运行时,构建失败会显示错误:

python: can't open file 'manage.py': [Errno 2] No such file or directory

知道我做错了吗?

1 个答案:

答案 0 :(得分:0)

愚蠢的错误 - 我没有改变我的django项目。在Fatal error: Cannot use object of type MongoCursor as array 之前添加cd <path-to-django-project>解决了问题。

最终设置命令:

manage.py