Встановлення
Using a standalone script
You may install pnpm even if you don't have Node.js installed, using the following scripts.
На Windows
Using PowerShell:
iwr https://get.pnpm.io/install.ps1 -useb | iex
У системах POSIX
curl -fsSL https://get.pnpm.io/install.sh | sh -
If you don't have curl installed, you would like to use wget:
wget -qO- https://get.pnpm.io/install.sh | sh -
На Alpine Linux
# bash
wget -qO- https://get.pnpm.io/install.sh | ENV="$HOME/.bashrc" SHELL="$(which bash)" bash -
# sh
wget -qO- https://get.pnpm.io/install.sh | ENV="$HOME/.shrc" SHELL="$(which sh)" sh -
# dash
wget -qO- https://get.pnpm.io/install.sh | ENV="$HOME/.dashrc" SHELL="$(which dash)" dash -
Системні вимоги
If you don't use the standalone script to install pnpm, then you need to have Node.js (at least v14) to be installed on your system.
Installing a specific version
Перед запуском скрипту встановлення ви можете додатково встановити змінну оточення PNPM_VERSION
, щоб встановити певну версію pnpm:
curl -fsSL https://get.pnpm.io/install.sh | env PNPM_VERSION=<version> sh -
підказка
Ви можете використати команду pnpm env, щоб інсталювати Node.js.
Using Corepack
З версії 16.13 Node.js використовує Corepack для керування менеджерами пакетів. Це експериментальна функція, тому вам потрібно ввімкнути її, виконавши:
corepack enable
If you installed Node.js using Homebrew, you'll need to install corepack separately:
brew install corepack