Installation
Prérequis
If you don't use the standalone script or @pnpm/exe
to install pnpm, then you need to have Node.js (at least v18.12) to be installed on your system.
En utilisant un script autonome
Vous pouvez installer pnpm même si vous n'avez pas installé Node.js, en utilisant les scripts suivants.
Sur Windows
En utilisant PowerShell:
Invoke-WebRequest https://get.pnpm.io/install.ps1 -UseBasicParsing | Invoke-Expression
POSIX :
curl -fsSL https://get.pnpm.io/install.sh | sh -
Si vous n'avez pas installé curl, vous pouvez utiliser wget:
wget -qO- https://get.pnpm.io/install.sh | sh -
You may use the pnpm env command then to install Node.js.
In a Docker container
# 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 -
Installation d'une version spécifique
Avant d'exécuter le script d'installation, vous pouvez éventuellement définir une variable d'environnement PNPM_VERSION
pour installer une version spécifique de pnpm :
curl -fsSL https://get.pnpm.io/install.sh | env PNPM_VERSION=<version> sh -
En utilisant Corepack
Depuis la v16.13, Node.js propose Corepack pour gérer les gestionnaires de paquets. Il s'agit d'une fonctionnalité expérimentale, vous devez donc l'activer en exécutant :
Si vous avez installé Node.js avec pnpm env
, Corepack ne sera pas installé sur votre système, vous devrez l'installer séparément. Voir #4029.
corepack enable pnpm
Si vous avez installé Node.js avec Homebrew, vous devrez installer corepack séparément :
brew install corepack
Cela installera automatiquement pnpm sur votre système.
Vous pouvez épingler la version de pnpm utilisée sur votre projet en utilisant la commande suivante :
corepack use pnpm@latest
Cela ajoutera un champ "packageManager"
dans votre package.json
local qui indiquera à Corepack de toujours utiliser une version spécifique sur ce projet. Cela peut s'avérer utile pour la reproductibilité, car tous les développeurs qui utilisent Corepack utiliseront la même version que vous. Lorsqu'une nouvelle version de pnpm est publiée, vous pouvez réexécuter la commande ci-dessus.
Using other package managers
En utilisant npm
Nous fournissons deux paquets en ligne de commande pour pnpm, pnpm
and @pnpm/exe
.
pnpm
is an ordinary version of pnpm, which needs Node.js to run.@pnpm/exe
est livré avec Node.js dans un exécutable, il peut donc être utilisé sur un système sans Node.js installé.
npm install -g pnpm
ou
npm install -g @pnpm/exe
En utilisant Homebrew
If you have the package manager installed, you can install pnpm using the following command:
brew install pnpm
En utilisant winget
If you have winget installed, you can install pnpm using the following command:
winget install -e --id pnpm.pnpm
En utilisant Scoop
If you have Scoop installed, you can install pnpm using the following command:
scoop install nodejs-lts pnpm
En utilisant Choco
If you have Chocolatey installed, you can install pnpm using the following command:
choco install pnpm
Using Volta
If you have Volta installed, you can install pnpm using the following command:
volta install pnpm
Voulez-vous utiliser pnpm sur des serveurs de CI ? Voir: Intégration Continue.
Compatibility
Here is a list of past pnpm versions with respective Node.js version support.
Node.js | pnpm 7 | pnpm 8 | pnpm 9 |
---|---|---|---|
Node.js 12 | ❌ | ❌ | ❌ |
Node.js 14 | ✔️ | ❌ | ❌ |
Node.js 16 | ✔️ | ✔️ | ❌ |
Node.js 18 | ✔️ | ✔️ | ✔️ |
Node.js 20 | ✔️ | ✔️ | ✔️ |
Résolution de problèmes
Si pnpm ne fonctionne plus et que vous ne pouvez pas le réparer en le réinstallant, vous devrez peut-être le retirer manuellement du PATH.
Supposons que vous obteniez l'erreur suivante lors de l'exécution de pnpm install
:
C:\src>pnpm install
internal/modules/cjs/loader.js:883
throw err;
^
Error: Cannot find module 'C:\Users\Bence\AppData\Roaming\npm\pnpm-global\4\node_modules\pnpm\bin\pnpm.js'
←[90m at Function.Module._resolveFilename (internal/modules/cjs/loader.js:880:15)←[39m
←[90m at Function.Module._load (internal/modules/cjs/loader.js:725:27)←[39m
←[90m at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:72:12)←[39m
←[90m at internal/main/run_main_module.js:17:47←[39m {
code: ←[32m'MODULE_NOT_FOUND'←[39m,
requireStack: []
}
Premièrement, essayez de trouver l'emplacement de pnpm en exécutant : which pnpm
. If you're on Windows, run where.exe pnpm.*
You'll get the location of the pnpm command, for instance:
$ which pnpm
/c/Program Files/nodejs/pnpm
Maintenant que vous savez où se trouve l'interface de ligne de commande pnpm, ouvrez ce répertoire et supprimez tous les fichiers liés à pnpm (pnpm.cmd
, pnpx.cmd
, pnpm
, etc). Une fois terminé, réinstallez pnpm et cela devrait fonctionner comme prévu.
Using a shorter alias
pnpm
might be hard to type, so you may use a shorter alias like pn
instead.
Ajout d'un alias permanent sur les systèmes POSIX
Just put the following line to your .bashrc
, .zshrc
, or config.fish
:
alias pn=pnpm
Ajout d'un alias permanent dans Powershell (Windows):
In a Powershell window with admin rights, execute:
notepad $profile.AllUsersAllHosts
In the profile.ps1
file that opens, put:
set-alias -name pn -value pnpm
Save the file and close the window. You may need to close any open Powershell window in order for the alias to take effect.
Updating pnpm
To update pnpm, run the self-update
command:
pnpm self-update
Désinstaller pnpm
If you need to remove the pnpm CLI from your system and any files it has written to your disk, see Uninstalling pnpm.