在使用宝塔cenots搭建node环境时,安装了pnpm,安装提供安装成功,但pnpm -v时报错-bash: pnpm: command not found,却找不到命令。
报错截图:
最终解决办法在pnpm官方文档里找到:https://www.pnpm.cn/installation
用以下命令安装并设置权限和环境变量后,就可以使用pnpm -v出版本号了。
curl -fsSL "https://github.com/pnpm/pnpm/releases/latest/download/pnpm-linuxstatic-x64" -o /bin/pnpm; chmod +x /bin/pnpm;