Pip install from the repo-bitbucket branch

Similar to pip install from git repo branches

Although, this still does not work. Is that the difference between github and bitbucket?

I am using a FROM python:latest docker FROM python:latest image, and the dockerfile file has a RUN pip install -r requirements.txt

My .txt requirements file has:

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

but it gives an error:

fatal: repository https://bitbucket.org/nicfit/eyed3.git/ 'not found

+4
source share
1 answer

eyeD3 is a hg relay, not a git repository.

Try something similar to this:

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

see https://pip.pypa.io/en/latest/reference/pip_install.html#mercurial

+4
source

All Articles