npm ERR! code ETARGET npm ERR! notarget No matching version found for npm@9.9.7. npm ERR! notarget In most cases you or one of your dependencies are requesting npm ERR! notarget a package version that doesn't exist. npm ERR! A complete log of this run can be found in: npm ERR! /Users/shenglei/.npm/_logs/2023-05-28T13_41_42_453Z-debug-0.log
时间: 2023-07-08 21:14:08 浏览: 151
npm install ERR
这个错误提示是因为你请求了一个不存在的 npm 包版本 9.9.7。可能是你或你的依赖项在请求这个版本,但实际上这个版本并不存在。你可以通过运行 `npm view npm versions` 命令来查看可用的 npm 版本。如果你想更新 npm 到最新版本,可以运行命令 `npm install -g npm@latest`。如果你想安装特定版本的 npm,可以运行 `npm install -g npm@<version>`,其中 `<version>` 是你想安装的版本号。
阅读全文