我在linux上安装了pnpm
curl -fsSL https://get.pnpm.io/install.sh | sh -
如https://pnpm.io/installation中所述。有了这个,我只得到了 pnpm 但没有安装 pnpx。如何安装 pnpx?
既然 pnpx 已被弃用,难道它不再存在了吗?见https://pnpm.io/pnpx-cli
我在linux上安装了pnpm
curl -fsSL https://get.pnpm.io/install.sh | sh -
如https://pnpm.io/installation中所述。有了这个,我只得到了 pnpm 但没有安装 pnpx。如何安装 pnpx?
既然 pnpx 已被弃用,难道它不再存在了吗?见https://pnpm.io/pnpx-cli
我们计划弃用 pnpx。使用pnpm dlx和pnpm exec而不是 pnpx。如果您仍想调用pnpx
而不是调用,您可以在 shell 中创建一个别名pnpm dlx
:
alias pnpx='pnpm dlx'
此外,现在使用此处pnpx
描述的安装方法进行安装
在 Linux 或 macOS 上:
curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm
在 Windows (PowerShell) 上:
Invoke-WebRequest 'https://get.pnpm.io/v6.16.js' -UseBasicParsing -o pnpm.js; node pnpm.js add --global pnpm; Remove-Item pnpm.js
或使用 npm npm i -g pnpm
。