You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying to uninstall a package from my ~/.local/lib/python/site-packages and pip wouldn't let me:
What I've run:
$ pip uninstall tornado
Not uninstalling tornado at /home/mg/.local/lib/python2.7/site-packages, outside environment /home/mg/.venv
(/home/mg/.venv is a virtualenv created with --system-site-packages. ~/.venv/bin is in my $PATH.)
Note that pip from the virtualenv can install things into ~/.local/lib/ if I run pip install --user, it's just pip uninstall that seems to cause confusion.
(FWIW my first inclination was to run pip uninstall --user tornado, but pip uninstall doesn't accept --user.)
The text was updated successfully, but these errors were encountered:
Raised in the past in issue #3352
Generally the implementation of schemes (and user scheme more than others) in pip is broken since the beginning; see issue #4575.
Description:
I was trying to uninstall a package from my ~/.local/lib/python/site-packages and pip wouldn't let me:
What I've run:
(/home/mg/.venv is a virtualenv created with --system-site-packages. ~/.venv/bin is in my $PATH.)
Note that pip from the virtualenv can install things into ~/.local/lib/ if I run
pip install --user
, it's justpip uninstall
that seems to cause confusion.(FWIW my first inclination was to run
pip uninstall --user tornado
, but pip uninstall doesn't accept --user.)The text was updated successfully, but these errors were encountered: