Mac 配置环境变量

在配置环境变量时找不到 .bash_profile 文件,请执行以下命令:

  1. 启动终端Terminal or iterm2
  2. 进入当前用户的 home 目录
cd ~
1、创建.bash_profile
touch .bash_profile
2、编辑 .bash_profile 文件
vi ~/.bash_profile

我是为了配置 nvm 的环境变量,将一下命令 Copy.bash_profile

1.  `export NVM_DIR="$HOME/.nvm"`
2.  `[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm`

然后保存并关闭 :wq .bash_profile 文件

3、更新刚配置的环境变量
source ~/.bash_profile

你可能感兴趣的:(环境变量,环境配置,bash,source,node.js)