Linux新装Nodejs并更新到最新版

直接包管理工具安装

sudo yum install nodejs -y

查看安装的版本

node -v && npm -v

全局安装node版本管理工具n

npm install n -g

安装最新版node

n latest

或者使用n x.x.x安装指定版本,然后使用n回车,上下切换版本。

n切换版本没有效果

n工具默认将node新版本安装在/usr/local下面,当前node的安装路径在/usr/local/bin/node下,需要修改~/.bash_profile设置node环境变量

使用命令vi ~/.bash_profile,将下面两行代码插入文件后面:

1
2
export N_PREFIX=/usr/local #n安装的node目录
export PATH=$N_PREFIX/bin:$PATH

执行source ~/.bash_profile,让设置生效,重新查看node -v && npm -v,发现版本已经更改。

推荐文章