npm与Node.js一起存在,当你安装Node.js会自动安装npm。所以我们只需要安装Node.js即可。其中setup_11.x是需要安装的版本号,替换数字就行。GitHub地址

Ubuntu系统

curl -sL https://deb.nodesource.com/setup_11.x | sudo -E bash -
sudo apt-get install -y nodejs

Debian系统

curl -sL https://deb.nodesource.com/setup_11.x | bash -
apt-get install -y nodejs

Centos系统

curl -sL https://rpm.nodesource.com/setup_11.x | bash -
yum install nodejs -y

检查Node.js和NPM版本

node -v
npm -v
Last modification:April 6, 2022
如果觉得我的文章对你有用,请随意赞赏