Oct-03-2016, 03:32 PM
PYTHONPATH is an environment variable. In linux, those are stored in either .bash or .bash_profile or .bashrc in your home directory (/home/your_user_name). If you're using a file browser, some of them hide files that start with ".", as those are normally "hidden" files. If you open a console and navigate there ("cd ~"), you can see all files, including hidden ones, with "ls -a". You can then edit that file using a text editor like nano "nano .bash".
What you add to that file will look similar to the following:
What you add to that file will look similar to the following:
export PYTHONPATH="${PYTHONPATH}:/my/other/path"