Linux安装nodejs
wget wget https://nodejs.org/dist/v14.17.6/node-v14.17.6-linux-x64.tar.xz // 下载
tar xf node-v14.17.6-linux-x64.tar.xz // 解压
cp node-v14.17.6-linux-x64 nodejs -R
cd nodejs // 进入解压目录
cp /etc/profile /etc/profile.bak
vim /etc/profile,在最下面添加 export PATH=$PATH: 后面跟上node下bin目录的路径
export PATH=$PATH:/root/nodejs/bin
立即生效
source /etc/profile
[root@localhost ~]# node -v
v14.17.6