I\'ve installed some packages during the execution of my script as a user. Those packages were the first user packages, so python didn\'t add ~/.local/lib/python2.7/si
~/.local/lib/python2.7/si
It might be better to add it directly to your sys.path with:
sys.path
import sys sys.path.append("/your/new/path")
Or, if it needs to be found first:
import sys sys.path.insert(1, "/your/new/path")