Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 ubuntu lucid 中有一个打开的终端,我需要一个新的环境变量集。所以,我打开 .bashrc 文件并编辑它,以添加新的环境变量(比如 PYTHONPATH)
.bashrc
PYTHONPATH=/some/path export PYTHONPATH
但是,为了获得这个效果,我需要关闭我的终端并再次打开它。是否有一些命令可以让我获得这种效果,而无需再次关闭/打开终端。
看一下source命令:man source
source
man source
source ~/.bashrc
除此之外:你为什么不直接在你的shell中使用环境命令来设置一个额外的环境变量呢?
export PYTHONPATH="/some/path"
这样创建的变量立即生效。
你也可以试试,
sat:~# . ~/.bashrc