Computer >> Computer tutorials >  >> Programming >> Python

How to set python environment variable PYTHONPATH on Linux?


To set the PYTHONPATH on linux to point Python to look in other directories for module and package imports, export the PYTHONPATH variable as follows:

$ export PYTHONPATH=${PYTHONPATH}:${HOME}/foo

In this case we are adding the foo directory to the PYTHONPATH. Note that we are appending it and not replacing the PYTHONPATH's original value. In most cases, you shouldn't mess with PYTHONPATH. More often than not, you are doing it wrong and it will only bring you trouble.