I want to update an already installed package, but I don't have sudo privileges I couldn't do it with -I and --user alone due to permission error and lack of ez_setup.py.
Download it at hand, unzip it, and install it in the user environment with pip from the unzipped directory.
# ./tar to tmp.Download gz
pip install [package] -I --user -d ./tmp
tar zxvf ./tmp/[package].tar.gz
pip install -e ./tmp/package --user
It will be installed in ~ / .local, so let's put it in your PATH.
Recommended Posts