How to set your python path on Linux?


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

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

In this case, 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.

Updated on: 30-Sep-2019

710 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements