Nico Schlömer
Nico Schlömer

Reputation: 58721

Uninstall a package installed with `pip install .`

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

Answers (1)

The Dead Mayan
The Dead Mayan

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

Related Questions