参见英文答案 > How do I reload .bashrc without logging out and back in? 16个
我在ubuntu lucid中有一个开放终端,我需要一个新的env变量set.So,我打开.bashrc文件并编辑它,添加新的env变量(比如说PYTHONPATH)
的.bashrc
PYTHONPATH=/some/path
export PYTHONPATH
最佳答案
看一下source命令:man source
原文链接:https://www.f2er.com/linux/440577.htmlsource ~/.bashrc
除此之外:为什么不直接在shell中使用环境命令来设置其他环境变量?
export PYTHONPATH="/some/path"
这样,创建的变量立即生效.