5

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?

Nico Schlömer
  • 53,797
  • 27
  • 201
  • 249
  • 4
    Possible duplicate of [how to cleanly uninstall my python packages with pip3 or any other way?](https://stackoverflow.com/questions/29346217/how-to-cleanly-uninstall-my-python-packages-with-pip3-or-any-other-way) – J...S Feb 16 '18 at 11:43
  • duplicate of https://stackoverflow.com/questions/33412974/how-to-uninstall-a-package-installed-with-pip-install-user – Yash Kumar Atri Feb 16 '18 at 11:45

1 Answers1

11

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/

The Dead Mayan
  • 357
  • 3
  • 10