查看更多Linux开发环境配置,请点击《Linux开发环境配置大全》
1)下载解压
下载
wget https://nodejs.org/dist/v10.16.0/node-v10.16.0-linux-x64.tar.xz
解压
tar xf node-v10.16.0-linux-x64.tar.xz
进入解压目录
cd node-v10.16.0-linux-x64
2)修改配置
vi /etc/profile ,在最后面添加
export PATH=$PATH:/root/node-v10.16.0-linux-x64/bin
执行命令生效
source /etc/profile
3)查看版本
[root@localhost ~]# node -v v10.16.0 [root@localhost ~]# npm -v 6.9.0