手动安装npm

#下载地址:<https://nodejs.org/en/download>
​
#放入linux目录后,解压包
tar zxvf node-v16.13.2-linux-x64.tar.gz
​
#配置环境变量
vim /etc/profile
...
PATH=$PATH:/home/dpan/soft/node-v16.13.2-linux-x64/bin
​
#刷新环境变量
source /etc/profile
​
#查看版本
npm -v
node -v

yum安装npm

curl --silent --location <https://rpm.nodesource.com/setup_10.x> | bash -
yum install -y nodejs

安装cnpm

#安装cnpm
npm install -g cnpm --registry=https://registry.npm.taobao.org

npm升级

#安装npm升级工具
npm install -g n
 
#安装最近的稳定版本
n stable

vue安装

#下载执行版本
npm install -g @vue/cli@4.5.15