-
安装
nvm
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash
-
输入
nvm
提示报错:command not found: nvm
可能原因是本机的环境变量没有设置
- 打开本机的
.bash_profile
:
cd ~ # 使用vim编辑器打开 .bash_profile vi .bash_profile
- 在
.bash_profile
文件中添加一下代码:(czx路径名改为自己电脑路径名)
export NVM_DIR="/Users/czx/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
- 更新配置的环境变量
source .bash_profile
- 打开本机的
-
输入
nvm
验证是否成功 -
使用
nvm
安装node 12.2.0
nvm install 12.2.0
-
查看安装的版本
nvm ls
-
切换
node
版本nvm use 12.2 nvm use system
-
如果启动项目时仍报错
可能原因:npm的缓存 导致 依赖包不一致
清除
npm
缓存npm cache clean -f