I have an account on a supercomputing cluster where I've installed some packages using e.g. "pip install --user keras".
When using qsub to submit jobs to the queue, I try to make sure the system can see my local packages by setting "export PYTHONPATH=$PYTHONPATH:[$HOME]/.local/lib/python2.7/site-packages/keras" in the script.
However, the resulting log file still complains that there is no package called keras. How can I make sure the system finds my packages?