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
One comment
不错不错,我喜欢看