npm.md 747 字节
Newer Older
1 2 3 4 5
# npm Install Requirements

If you're installing the npm module you'll need certain dependencies to build
the native modules used by VS Code.

A
Anmol Sethi 已提交
6 7
You also need at least node v12 installed. See [#1633](https://github.com/cdr/code-server/issues/1633).

8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
## Ubuntu, Debian

```bash
sudo apt-get install -y \
  build-essential \
  pkg-config \
  libx11-dev \
  libxkbfile-dev \
  libsecret-1-dev
```

## Fedora, Red Hat, SUSE

```bash
sudo yum groupinstall -y 'Development Tools'
sudo yum config-manager --set-enabled PowerTools
sudo yum install -y python2 libsecret-devel libX11-devel libxkbfile-devel
npm config set python python2
```

## macOS

Install [Xcode](https://developer.apple.com/xcode/downloads/) and run:

```bash
xcode-select --install
```