How can I permanently change the PYTHONPATH on a mac? I\'ve tried editing .bash_profile, but when I use print sys.path
in a file it gives a huge list of differe
You can append the path to $PATH
and not to $PYTHONPATH.
if you insist to change the PYTHONPATH
, in some context that is
prefferable:
do this:
export PYTHONPATH=$PYTHONPATH:/Users/username/pymodules
PYTHONPATH
see
What exactly should be set in PYTHONPATH?.