我正在使用 python 和 git 开发一个简单的 Turbogears2 项目,我只是为了好玩而构建的。在某个时刻,我想将它部署到 Heroku,所以我照常进行pip freeze > requirements.txt
,但出现此错误:
Error when trying to get requirement for VCS system Command /usr/bin/git config
remote.origin.url failed with error code 1 in /home/ricardo/myprojs/hellotg22/example,
falling back to uneditable format
在requirements.txt
它产生的所有依赖项之间列出的,我发现这一行,whi 一点也不好看:
...
decorator==3.4.0
## !! Could not determine repository location
example==0.1dev
...
有没有人知道问题出在哪里?
无论如何,我已经设法获得了 requirements.txt 文件,但我想知道这个错误是怎么回事。