Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

pip install from bitbucket repo's branch

Similar to pip install from git repo branch

Although, it still does not work. Is it a difference between github and bitbucket?

I'm using the FROM python:latest docker image and my dockerfile has RUN pip install -r requirements.txt

My requirements.txt has:

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

but it gives the error:

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

like image 399
Tjorriemorrie Avatar asked Aug 03 '15 16:08

Tjorriemorrie


1 Answers

eyeD3 is an hg repo, not a git repo.

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

like image 120
Josh J Avatar answered Nov 01 '22 15:11

Josh J