I have installed some packages with -e
> pip install -e git+https://github.com/eventray/horus.git@2ce62c802ef5237be1c6b1a91dbf115ec284a619#egg=horus-dev
I with pip freeze I see
> pip freeze
...
-e git+https://github.com/eventray/horus.git@2ce62c802ef5237be1c6b1a91dbf115ec284a619#egg=horus-dev
...
when I try to uninstall the packages I get errors:
> pip uninstall horus-dev
Cannot uninstall requirement horus-dev, not installed
> pip uninstall horus
Cannot uninstall requirement horus, not installed
How do I uninstall such a package?
conda develop -u .
– Pushedpip uninstall yourpackage
did not work? Like what your errors mean? Seems odd output from the command... – Pushedpip uninstall -e .
orpython setup.py develop -u
? – Pushedpython setup.py develop -u
,pip uninstall library
,pip uninstall -e .
andpip uninstall -r requirements.txt
. So which one do we do in what situation and which one needs to remove extra stuff by hand (& for what versions of pip and python do we not need to worry by removing things by hand)? – Pushedpip uninstall library
worked just fine. If you go to the answer the OP provided it seems it's something weird with his library that was corrupted. Hopefully this saves people time next time they come here. Though, there are many different options that might work. – Pushedpath/to/pythonX.Y -m pip uninstall library
should work. If it doesn't, then probably something went wrong at some point. – Longsomepip uninstall library
should work and as the OP admitted in his own answer to his won question, the most likely reason things were not working with him was because his computer & installations were in a weird state. – Pushed