与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/”
答案 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