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
v4 -> v6. v6 -> v7
  • Loading branch information
pierreneter authored Oct 30, 2016
commit 7b2873bb47aff0fc721284fd7f4a41104ceb0274
16 changes: 8 additions & 8 deletions locale/en/download/package-manager.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,17 @@ Also including: **Linux Mint**, **Linux Mint Debian Edition (LMDE)**, **elementa

Node.js is available from the [NodeSource](https://nodesource.com) Debian and Ubuntu binary distributions repository (formerly [Chris Lea's](https://github.com/chrislea) Launchpad PPA). Support for this repository, along with its scripts, can be found on GitHub at [nodesource/distributions](https://github.com/nodesource/distributions).

**NOTE:** If you are using Ubuntu Precise or Debian Wheezy, you might want to read about [running Node.js >= 4.x on older distros](https://github.com/nodesource/distributions/blob/master/OLDER_DISTROS.md).
**NOTE:** If you are using Ubuntu Precise or Debian Wheezy, you might want to read about [running Node.js >= 6.x on older distros](https://github.com/nodesource/distributions/blob/master/OLDER_DISTROS.md).

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

Alternatively, for Node.js v6:
Alternatively, for Node.js v7:

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

Expand Down Expand Up @@ -114,16 +114,16 @@ 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, for Node.js v4 LTS Argon:
Run as root on RHEL, CentOS or Fedora, for Node.js v6 LTS:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

for Node.js v6 LTS "Boron"

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

actually, scrap that, it's not used elsewhere in the doc so this change is fine for now


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

Alternatively for Node.js v6:
Alternatively for Node.js v7:

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

Alternatively for Node.js 0.10:
Expand Down