想安装pnpm跑一个前端项目,直接执行 pnpm i 说不支持当前node版本,看样子不得不升级了,mark一下。
pnpm i ERROR: This version of pnpm requires at least Node.js v16.14 The current version of Node.js is v16.13.1 Visit https://r.pnpm.io/comp to see the list of past pnpm versions with respective Node.js version support. # 使用淘宝registry报错 npm error request to https://registry.npm.taobao.org/n failed, reason: certificate has expired # 解决 npm cache clean --force npm config set registry https://registry.npmmirror.com
第一步,先查看本机node.js版本:
node -v
第二步,清除node.js的cache:
sudo npm cache clean -f
第三步,安装 n 工具,这是个专门用来管理node.js版本的工具。
sudo npm install -g n
第四步,安装指定版本的node.js
sudo n 16.14.0
安装node 16.14.0版本(n后面跟你想要安装的node版本号就可以啦)
第五步,再次查看本机的node.js版本:
node -v
第六步,更新npm到最新版,不影响使用可以不更新,非必需
sudo npm install npm@latest -g
参考: