1、 打开终端Terminal。
2、 输入以下命令打开你的shell配置文件,比如bash或zsh。如果你使用的是bash,那么你需要编辑~/.bash_profile
或者~/.bashrc
文件;如果你使用的是zsh,那么你需要编辑~/.zshrc
文件。
bash
open -e ~/.bash_profile
或者
bash
open -e ~/.zshrc
3、 在打开的配置文件中,你可以添加你的环境变量设置。例如,如果你想要添加一个名为MY_PATH
的环境变量,并且它的值为/my/custom/path
,你可以添加如下行:
bash
export MY_PATH=/my/custom/path
4、 保存并关闭配置文件后,你需要让更改生效。这可以通过在终端中运行以下命令来实现:
bash
source ~/.bash_profile
或者
bash
source ~/.zshrc
5、 现在,你可以通过在终端中输入echo $MY_PATH
来检查环境变量的值是否已经正确设置。
6、 如果你是在系统级别设置环境变量,那么需要管理员权限,可以使用sudo
命令。
bash
sudo source ~/.bash_profile
或者
bash
sudo source ~/.zshrc