.bash_profile:source:1: no such file or directory: /Users/song/.profile | 2019-01-23

Mac 每次都要执行source ~/.bash_profile 配置的环境变量才生效
自己在 ~/.bash_profile 中配置环境变量, 可是每次重启终端后配置的不生效.需要重新执行 : $source ~/.bash_profile

发现zsh加载的是 ~/.zshrc文件,而 ‘.zshrc’ 文件中并没有定义任务环境变量。

解决办法

在~/.zshrc文件最后,增加一行:
source ~/.bash_profile

猜你喜欢

转载自blog.csdn.net/weixin_33681778/article/details/87510976