Skip to content

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

Hat tip to this search result

Clone this wiki locally