Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions locale/en/download/package-manager.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,19 @@ Node.js is available from the [NodeSource](https://nodesource.com) Enterprise Li

Note that the Node.js packages for EL 5 (RHEL5 and CentOS 5) depend on the **[EPEL](https://fedoraproject.org/wiki/EPEL)** repository being available. The setup script will check and provide instructions if it is not installed.

Run as root on RHEL, CentOS or Fedora:
Run as root on RHEL, CentOS or Fedora, for Node.js v4 LTS Argon:

```bash
curl --silent --location https://rpm.nodesource.com/setup_4.x | bash -
```

Alternatevely for Node.js v5:

```bash
curl --silent --location https://rpm.nodesource.com/setup_5.x | bash -
```

Alternatevely for Node.js 0.10:

```bash
curl --silent --location https://rpm.nodesource.com/setup | bash -
Expand All @@ -106,7 +118,7 @@ curl --silent --location https://rpm.nodesource.com/setup | bash -
Then install, as root:

```bash
yum -y install nodejs
yum -y install nodejs
```

***Optional***: install build tools
Expand Down