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
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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With