查了很多文章,看到很多都是说由于终端是ZSH模式导致的
只是切换终端的话并没有让我的设置生效
但是切换终端的模式的命令还是贴出来
chsh -s /bin/bash
chsh -s /bin/zsh
最终成功解决是看了这篇文章链接: https://support.apple.com/zh-cn/HT208050
修改了.zprofile文件中的配置,我的环境变量文件是.bash_profile文件所以修改的配置是
[[ -e ~/.bash_profile ]] && emulate sh -c 'source ~/.bash_profile'export MY_SETTING=1
在修改后执行 source ~/.zprofile
在解决这个问题过程中也看到一些有用的信息记录下来备忘:
Mac 下环境变量的加载顺序
- /etc/profile
- /etc/paths
- ~/.bash_profile
- ~/.bash_login
- ~/.profile
- ~/.bashrc
P.S
/etc/profile 和 /etc/paths 为系统级别的,在系统启动以后就会加载,后面的是用户级别的,一般首次配置环境变量,会新建 ~/.bash_profile 文件,在里面进行 PATH 的配置,当系统读取到了 ~/.bash_profile 中有效的命令以后就不会再往下读了,如果没有读到所执行的命令,则讲继续往下的配置文件中读取。
- 参考文章:
- https://www.likecs.com/show-203681293.html
https://www.codenong.com/cs110671680/
https://support.apple.com/zh-cn/HT208050
来源地址:https://blog.csdn.net/rorty_ran/article/details/127849628