code-server/docs/npm.md

1.4 KiB

npm Install Requirements

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

  • Node.js: version >= 12, <= 14

Note: the Node.js version requirements are based on the VS Code Node.js requirements. See here.

Related:

Ubuntu, Debian

sudo apt-get install -y \
  build-essential \
  pkg-config \
  python3
npm config set python python3

Fedora, CentOS, RHEL

sudo yum groupinstall -y 'Development Tools'
sudo yum config-manager --set-enabled PowerTools # unnecessary on CentOS 7
sudo yum install -y python2
npm config set python python2

Alpine

apk add alpine-sdk bash libstdc++ libc6-compat
npm config set python python3

macOS

xcode-select --install

FreeBSD

pkg install -y git python npm-node12 yarn-node12 pkgconf
pkg install -y libinotify