I'm trying to install packages locally with pip. It used to work with --user
but now when I try it, it finds the version of the package in /usr/local/lib/
and then does not install it locally. Normally it would install things in ~/.local
but now it just checks the system-wide dir for the package and if it's there, it does not install it (which is not what I want) and if it's not there, it tries to install it in /usr/local/lib
which I do not have write permissions at. Eg:
$ pip install --user rpy2
Requirement already satisfied (use --upgrade to upgrade): rpy2 in /usr/local/lib/python2.7/dist-packages/
How can I make pip install --user
always go to ~/.local
and not a system-wide directory?