linux下安装nvm

匿名 (未验证) 提交于 2019-12-02 21:56:30

linux下安装nvm

As大大关注

https://github.com/creationix/nvm

   curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash 
   wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash 

next:
vim ~/.bashrc 写入下面代码

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

下一步即可安装node
如 v6.11.0版本

 nvm i 6.11.0 

nvm常用指令:

 nvm uninstall 6.11.0     // 移除 node 6.11.0 nvm use 6.11.0           // 使用 node 6.11.0 nvm ls                   // 查看目前已安装的 node 及当前所使用的 node nvm ls-remote            // 查看目前线上所能安装的所有 node 版本 nvm alias default 6.11.0 // 使用 6.11.0 作为预设使用的 node 版本 

小礼物走一走,来简书关注我

文章来源: https://blog.csdn.net/jfkidear/article/details/91536752
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!