OS X:环境变量从哪里加载?
每当我打开新的 Bash shell 时,我都会设置一个环境变量(PYTHONPATH),但我在 ~/* 或 /etc/* 中没有看到对该变量的任何引用。这个变量可以从哪里设置?
I have an env var that's being set(PYTHONPATH) whenever I open a new Bash shell, but I don't see any reference to the variable in ~/* or /etc/*. Where could this variable be set from?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它可能位于
~/.bashrc
、~/.bash_profile
或~/.MacOSX/environment.plist
中。*
与以.
开头的文件(隐藏文件)不匹配。It could be in
~/.bashrc
,~/.bash_profile
, or~/.MacOSX/environment.plist
.*
doesn't match files starting with.
(hidden files).