Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 948
Nico Schlömer Avatar asked Dec 23 '22 09:12

Nico Schlömer


1 Answers

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/

like image 56
The Dead Mayan Avatar answered Dec 31 '22 13:12

The Dead Mayan