-
Notifications
You must be signed in to change notification settings - Fork 7
pip install upgrade a new release directly from GitHub
Louis Maddox edited this page Jan 19, 2019
·
2 revisions
I just had to upgrade scikit-image
(to 0.14.2) directly from GitHub (as it conflicts with numpy due to a bug) and eventually figured out this command to do so:
pip install -e git+https://github.com/scikit-image/scikit-image.git@v0.14.2#egg=scikit-image -U
- The
-e
flag is probably "external", i.e. you point to a VCS URL - Don't forget the
-U
flag at the end (equivalent to the--upgrade
flag) - The "egg" term is given as otherwise you get:
Could not detect requirement name for 'git+https://github.com/scikit-image/scikit-image/archive/v0.14.2.zip', please specify one with #egg=your_package_name
Hat tip to this search result