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

How to set your python path on Mac?


To set the PYTHONPATH on Mac OS 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 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