pip从bitbucket repo的分支安装

时间:2015-08-03 16:11:38

标签: python git pip bitbucket

pip install from git repo branch类似

虽然,它仍然不起作用。这是github和bitbucket之间的区别吗?

我正在使用FROM python:latest泊坞窗图片,我的dockerfile有RUN pip install -r requirements.txt

我的requirements.txt有:

-e git+https://bitbucket.org/nicfit/eyed3.git@py3#egg=eyed3

但它给出了错误:

  

致命:未找到存储库“https://bitbucket.org/nicfit/eyed3.git/

1 个答案:

答案 0 :(得分:5)

eyeD3是hg回购,而不是git回购。

尝试类似的内容:

pip install -e hg+https://bitbucket.org/nicfit/eyed3#egg=eyeD3

请参阅https://pip.pypa.io/en/latest/reference/pip_install.html#mercurial