pnpm-install-on-mac

473 阅读1分钟

pnpm install on mac os so easily , in 1 line , with brew ,npm or other tools.

pnpm install on mac with brew

brew install pnpm

pnpm install on mac with npm

  • i prefer to install it with npm (to bind pnpm with node version when swicthing node version)
# recommended
npm i -g pnpm@6

# pratice:
# nvm use 14.21.3
# nvm use 12.22.12

# npm i -g pnpm@6
# npm ls -g --depth=0
# npm uninstall -g pnpm

pnpm install on mac with offical standlong script

curl -fsSL https://get.pnpm.io/install.sh | sh -
# curl -fsSL https://get.pnpm.io/install.sh | env PNPM_VERSION=<version> sh -

refer

pnpm.io/installatio…

source code

tj/n - github

nvm-sh/nvm - github

next reading

nrm install with pnpm