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
92 changes: 50 additions & 42 deletions locale/en/download/package-manager.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,29 @@ title: Installing Node.js via package manager

----------------------------

* [Arch Linux](#arch-linux)
* [Debian and Ubuntu based Linux distributions](#debian-and-ubuntu-based-linux-distributions)
* [Enterprise Linux and Fedora](#enterprise-linux-and-fedora)
* [Gentoo](#gentoo)
* [openSUSE and SLE](#opensuse-and-sle)
* [Arch Linux](#arch-linux)
* [Void Linux](#void-linux)
* [FreeBSD and OpenBSD](#freebsd-and-openbsd)
* [Gentoo](#gentoo)
* [NetBSD](#netbsd)
* [openSUSE and SLE](#opensuse-and-sle)
* [OSX](#osx)
* [SmartOS and illumos](#smartos-and-illumos)
* [Void Linux](#void-linux)
* [Windows](#windows)

----------------------------

## Arch Linux

Node.js and npm packages are available in the Community Repository.

```bash
pacman -S nodejs npm
```


## Debian and Ubuntu based Linux distributions

Also including: **Linux Mint**, **Linux Mint Debian Edition (LMDE)**, **elementaryOS** and others.
Expand Down Expand Up @@ -209,44 +218,6 @@ Additionally, versions of **CentOS** and **Scientific Linux** corresponding to t
* **Fedora 20 (Heisenbug)** (i686/x86_64/armv6hl/armv7hl)
* **Fedora 19 (Schrödinger's Cat)** (i686/x86_64/armv7hl)

## Gentoo

Node.js is available in the portage tree.

```bash
emerge nodejs
```

## openSUSE and SLE

[Download Node.js via openSUSE one-click](http://software.opensuse.org/download.html?project=devel%3Alanguages%3Anodejs&package=nodejs).

Available RPM packages for: openSUSE 11.4, 12.1, 12.2, 12.3, 13.1, Factory and Tumbleweed; SLE 11 (with SP1/SP2/SP3 variations).

Example install on openSUSE 13.1:

```bash
sudo zypper ar \
http://download.opensuse.org/repositories/devel:/languages:/nodejs/openSUSE_13.1/ \
Node.js
sudo zypper in nodejs nodejs-devel
```

## Arch Linux

Node.js and npm packages are available in the Community Repository.

```bash
pacman -S nodejs npm
```

## Void Linux

Void Linux ships node.js stable in the main repository.

```bash
xbps-install -Sy node.js
```

## FreeBSD and OpenBSD

Expand Down Expand Up @@ -280,6 +251,16 @@ Or the development versions:
pkg install node-devel
```


## Gentoo

Node.js is available in the portage tree.

```bash
emerge nodejs
```


## NetBSD

Node.js is available in the pkgsrc tree:
Expand All @@ -294,6 +275,23 @@ Or install a binary package (if available for your platform) using pkgin:
pkgin -y install nodejs
```


## openSUSE and SLE

[Download Node.js via openSUSE one-click](http://software.opensuse.org/download.html?project=devel%3Alanguages%3Anodejs&package=nodejs).

Available RPM packages for: openSUSE 11.4, 12.1, 12.2, 12.3, 13.1, Factory and Tumbleweed; SLE 11 (with SP1/SP2/SP3 variations).

Example install on openSUSE 13.1:

```bash
sudo zypper ar \
http://download.opensuse.org/repositories/devel:/languages:/nodejs/openSUSE_13.1/ \
Node.js
sudo zypper in nodejs nodejs-devel
```


## OSX

Simply download the [Macintosh Installer](http://nodejs.org/#download) direct from the [nodejs.org](http://nodejs.org) web site.
Expand Down Expand Up @@ -346,6 +344,16 @@ Or build manually from pkgsrc:
cd pkgsrc/lang/nodejs && bmake install
```


## Void Linux

Void Linux ships node.js stable in the main repository.

```bash
xbps-install -Sy node.js
```


## Windows

Simply download the [Windows Installer](http://nodejs.org/#download) directly from the [nodejs.org](http://nodejs.org) web site.
Expand Down