在配置环境变量时找不到 .bash_profile 文件,请执行以下命令:
- 启动终端Terminal or iterm2
- 进入当前用户的 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
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。