Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

bash - Python: can't access newly defined environment variables

I can't access my env var:

import subprocess, os
print os.environ.get('PATH') # Works well
print os.environ.get('BONSAI') # doesn't work

But the env var is well added in my /home/me/.bashrc:

BONSAI=/home/me/Utils/bonsai_v3.2
export BONSAI

And I can access this env var from a new terminal.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

After updating your .bashrc, perform source ~/.bashrc to apply the changes.

Also, merge the two BONSAI-related calls into one:

export BONSAI=/home/me/Utils/bonsai_v3.2

UPDATE: It was actually an attempt to update the environment for some Eclipse-based IDE. This is a different usecase altogether. It should be described in the Eclipse help. Also, a similar question was answered here.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...