vote up 0 vote down star

I put this at the top, using "sudo vi /etc/profile":

PYTHONPATH=/home/myuser:/home/myotheruser

When I use putty and log in under my username, the python path does not work! I type "set", and it is there. But, importing things from that directory still does not work.

When I manually do this, then it will work.

EXPORT PYTHONPATH=/home/myuser:/home/myotheruser

However, I don't want to do that everytime. I simply want this path to be appended to everyone, at startup.

flag

Just a note: It's not a good idea to have user's configuration rely on other user's home files. Unless "myotheruser" needs to be able to modify those files regularly, you should install them under /usr/local. – AFoglia Oct 29 at 14:29

1 Answer

vote up 4 vote down check

You need to export the PYTHONPATH even in /etc/profile.

Make sure you have these lines both in /etc/profile.

PYTHONPATH=...
export PYTHONPATH

After that login again.

link|flag

Your Answer

Get an OpenID
or

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