While developing a package I installed it through pip install -e .
Now when I pip uninstall myPackage
I get
Found existing installation: myPackage 0.1.2
Can't uninstall 'myPackage'. No files were found to uninstall.
with pip show myPackage
I get:
Location: /mnt/home/aerijman/scripts/myPackage
I don't want to delete the path. How do I uninstall it?
Thank you