I thought

import sys
sys.path.append("/home/me/mydir")

is appending a dir to my pythonpath

if I print sys.path my dir is in there.

Then I open a new command and it is not there anymore.

But somehow Python cant import modules I saved in that dir.

What Am I doing wrong?

I read .profile or .bash_profile will do the trick.

Do I have to add:

PATH="/Me//Documents/mydir:$PYTHONPATH"
export PATH

To make it work?

link|improve this question

feedback

1 Answer

up vote 7 down vote accepted

Modifications to sys.path only apply for the life of that Python interpreter. If you want to do it permanently you need to modify the PYTHONPATH environment variable:

PYTHONPATH="/Me/Documents/mydir:$PYTHONPATH"
export PYTHONPATH

Note that PATH is the system path for executables, which is completely separate.

link|improve this answer
Thanks a lot (forgot that). WHERE do I put that? in .profile in .bash_profile? Before Macpython?: # Setting PATH for MacPython 2.6 # The orginal version is saved in .bash_profile.pysave PATH="/Library/Frameworks/Python.framework/Versions/2.6/bin:${PATH}" export PATH Or after that? Does order matter? – MacPython Aug 2 '10 at 12:31
.bash_profile. If you already have a .bash_profile, I believe bash ignores .profile. Order doesn't matter here, because they're two different environment variables. – Matthew Flaschen Aug 2 '10 at 12:36
@Felix, note that the MacPython code he has deals with PATH (system path), a separate variable. – Matthew Flaschen Aug 2 '10 at 12:37
You are right, thanks. – Felix Kling Aug 2 '10 at 12:46
1  
So I did add PYTHONPATH "path:$PYTHONPATH" export PYTHONPATH and AFTER I restarted my computer it worked. Big Thanks to Matthew and Felix!! – MacPython Aug 2 '10 at 13:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.