Iam working on a server without root access and after a restart it seems my Path variables for are destroyed. As Iam not permitted to use virtualenv, I use pip install --user package to install python packages.
Since a restart, I can only use outdated libraries in /usr/lib/python2.7/dist-packages, but not /.local/lib/python2.7/site-packages.
I can also not use packages like scrapy or spyder from the .local path in the terminal. I already set export PYTHONPATH=$PYTHONPATH:/.local/lib/python2.7/site-packages, but there are no changes.
The .local path is also not shown if I run print(sys.path) in python.
Do I have to change some other path?
The OS is Ubuntu 14.04.
Thank you in advance.