Reputation: 58721
When installing Python packages from development repositories, I usually navigate to wherever setup.py
is found and do
pip install .
This installs the package in $HOME/.local/
. Nice.
How can I uninstall a package installed this way?
Upvotes: 7
Views: 11507
Reputation: 367
Simply run pip uninstall package-name
That's all you need.
For more follow this link : https://pip.pypa.io/en/stable/reference/pip_uninstall/
Upvotes: 12