前言: 我们平常常用的安装软件有三种方式, yum(apt-get等)命令, rpm(deb等)包, 源码编译, 而最便捷的便是yum式的命令式安装, 下面, 我们就以最便捷的方式来安装它
centos
1. 获取最新版的 bash
curl --silent --location https://rpm.nodesource.com/setup_8.x | bash -
其他版本, 如:
curl --silent --location https://rpm.nodesource.com/setup_7.x | bash -
2. 执行安装
sudo yum install -y nodejs
3. 查看版本
node --version
npm --version
ubuntu
1. 获取最新版的 bash
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
其他版本, 如:
curl --silent --location https://rpm.nodesource.com/setup_7.x | bash -
2. 执行安装
sudo apt-get install -y nodejs
3. 查看版本
node --version
npm --version
更多版本
请到网站去找
https://rpm.nodesource.com
note: 记得用
root
权限