I am working on a compute server which runs a linux. The machine is used by several users so I don't have and won't get root privileges.
I need to install Keras
which you would normally do by using pip
Now, pip is not installed and the root
won't install it for me either unless I beg him for probably a month or so. I tried to locally install pip with the python installation scrip Python352/bin/python3.5 get-pip.py --user
This unfortunately throws me an no permission error /etc
. This is not exactly what I expected from installing the tool locally. Is it somehow possible to make an installation of pip that does not try to touch anything outside my local directory?
pip
is not already installed? Since 3.4,pip
comes default with the binary installers of python. – Anthonpython3.5 get-pip.py --user
using on my Linux Mint 17 system and did not get the permission error (as normal user without write rights on/etc
and using 3.5.2) – Anthon