环境
本文如无特殊说明,使用root用户在/root目录下进行操作,现在使用的centos7
主要流程
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
source .bash_profile
nvm ls-remote
nvm install v10.13.0
思路
使用nvm(github地址)管理nodejs(github地址)。
流程解析
第一步:
下载安装脚本到本地,将会自动安装nvm
使用curl
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
或者使用wget
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh|bash
第二步:
第一步安装之后,使用nvm命令应该会报错:命令未找到。所以手动操作使环境变量生效环境变量文件(~/.bash_profile, ~/.zshrc, ~/.profile, 或者 ~/.bashrc)
source .bash_profile
之后nvm就可以了,如果还不可以的话,关了这个命令行,然后重新开一个就好了
第三步:
使用nvm展示出远程的nodejs版本
nvm ls-remote
不出意外,这里会展示出好多个版本(ls-remote注意Ls-remote不是i,中间没有空格。nvm后面有空格)
第四步:
使用nvm install v版本号安装你想要安装的版本,此刻,我选的10.13.0
nvm install v10.13.0
最后
使用命令 node -v试试吧
网友评论