当前位置: 首页 > 工具软件 > Deb.js > 使用案例 >

Node.js 在 Ubuntu 18.04 /CentOS 7 安装

李康安
2023-12-01

CentOS


安装说明
注意:如果您使用的是RHEL 6CentOS 6,您可能需要阅读有关在较旧的发行版上运行Node.js的信息。

在RHEL,CentOS,CloudLinux或Fedora上以root用户身份运行:

可选:安装构建工具

要从npm编译和安装本机插件,您可能还需要安装构建工具:

yum install gcc-c++ make

or

yum groupinstall 'Development Tools'

选择所需版本

Run as root on RHEL, CentOS, CloudLinux or Fedora:

#NodeJS 13.x

curl -sL https://rpm.nodesource.com/setup_13.x | bash -
#NodeJS 12.x

curl -sL https://rpm.nodesource.com/setup_12.x | bash -
#NodeJS 11.x

curl -sL https://rpm.nodesource.com/setup_11.x | bash -
#NodeJS 10.x

curl -sL https://rpm.nodesource.com/setup_10.x | bash -
#NodeJS 8.x

curl -sL https://rpm.nodesource.com/setup_8.x | bash -
#NodeJS 6.x

curl -sL https://rpm.nodesource.com/setup_6.x | bash -
curl --silent --location https://rpm.nodesource.com/setup_8.x | sudo bash -
yum install -y nodejs

Ubuntu


安装说明

可选:安装构建工具

要从npm编译和安装本机插件,您可能还需要安装构建工具:

#在Ubuntu上使用`sudo`或在debian 上以root身份运行它
sudo apt-get install -y build-essential
Node.js v11.x:

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

#使用Debian,作为root 
curl -sL https://deb.nodesource.com/setup_11.x | bash  - 
apt-get install -y nodejs
Node.js v10.x:

#使用Ubuntu 
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash  - 
sudo apt-get install -y nodejs

#使用Debian,作为root 
curl -sL https://deb.nodesource.com/setup_10.x | bash  - 
apt-get install -y nodejs
Node.js v8.x:

#使用Ubuntu 
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash  - 
sudo apt-get install -y nodejs

#使用Debian,作为root 
curl -sL https://deb.nodesource.com/setup_8.x | bash  - 
apt-get install -y nodejs
Node.js v6.x:

#使用Ubuntu 
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash  - 
sudo apt-get install -y nodejs

#使用Debian,作为root 
curl -sL https://deb.nodesource.com/setup_6.x | bash  - 
apt-get install -y nodejs

npm


之前在centos 上安装以后有npm在 ubuntu 需自行安装

sudo apt install  -y npm

参考 github https://github.com/nodesource/distributions


 类似资料: