问题
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?
回答1:
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/
来源:https://stackoverflow.com/questions/48826015/uninstall-a-package-installed-with-pip-install