美文网首页
Linux下安装nodeJs

Linux下安装nodeJs

作者: 鱼翅大魔王 | 来源:发表于2019-05-10 22:15 被阅读0次

不得不提linux下坑确实多,使用apt-get安装的node是4.2.6版本的,而使用nvm又老是遇到问题

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

或者

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

如果执行后使用nvm -v提示的是nvm:common is not found,则运行如下内容即可

source ~/.nvm/nvm.sh
source ~/.profile
source ~/.bashrc

如果正常输出版本号则可以直接安装

nvm install 10.15.3

相关文章

网友评论

      本文标题:Linux下安装nodeJs

      本文链接:https://www.haomeiwen.com/subject/qhnzoqtx.html