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 .
– Charlie Parkerpip uninstall yourpackage
did not work? Like what your errors mean? Seems odd output from the command... – Charlie Parkerpip uninstall -e .
orpython setup.py develop -u
? – Charlie Parkerpip 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. – Charlie Parker