How Can I Edit Pythonpath On A Mac?
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 different URLs than the .bas
Solution 1:
You can append the path to
$PATHand not to$PYTHONPATH.if you insist to change the
PYTHONPATH, in some context that is prefferable:do this:
export PYTHONPATH=$PYTHONPATH:/Users/username/pymodules- To make sure you are following the convention of what to append to
PYTHONPATHsee What exactly should be set in PYTHONPATH?.
Post a Comment for "How Can I Edit Pythonpath On A Mac?"