How to uninstall a package installed with pip install –user
Having tested this using Python 3.5 and pip 7.1.2 on Linux, the situation appears to be this: pip install –user somepackage installs to $HOME/.local, and uninstalling it does work using pip uninstall somepackage. This is true whether or not somepackage is also installed system-wide at the same time. If the package is installed at both … Read more