如何重新安装损坏的npm
v9.11.1
当我尝试使用npm时,我刚刚安装了node ,但始终收到以下错误:
npm WARN npm npm does not support Node.js v9.11.1npm WARN npm You should probably upgrade to a newer version of node as we
npm WARN npm can't make any promises that npm will work with this version.
npm WARN npm Supported releases of Node.js are the latest release of 4, 6, 7, 8.
npm WARN npm You can find the latest version at https://nodejs.org/
我尝试这样做,npm i -g npm
但是它无法更新自身,只是不断在上面抛出相同的错误。
当我运行npm -v
它时5.5.1
,似乎是最新版本5.8.0
。
我尝试删除该文件夹并在node.js安装程序上运行修复功能,但未替换该模块。
回答:
回答:
https://stackoverflow.com/a/5926706/349659
npm list -g
对于Windows,这很可能是:
%AppData%\npm\node_modules
您可以将其粘贴到文件夹的地址栏中,它将带您到那里。
在那里,删除名为的文件夹npm
。
回答:
https://github.com/npm/cli/releases/latest
抓取zip并将其解压缩到node_modules
刚从中删除npm文件夹的文件夹中。
将您从zip提取的文件夹重命名为 npm
如果您收到有关文件路径或名称太长的任何警告,请跳过警告。
回答:
现在,您应该能够在npm i -g npm
没有任何警告的情况下运行更新/重新安装npm。
如果您在Windows中遇到有关路径或文件名过长的错误,我认为此步骤特别重要。
您可能会遇到以下错误。如果确实要删除并移动列出的文件,则应该可以npm i -g npm
成功运行。
npm ERR! Refusing to delete C:\Program Files\nodejs\npx.cmd: is outside C:\Program Files\nodejs\node_modules\npm and not a linknpm ERR! File exists: C:\Program Files\nodejs\npx.cmd
npm ERR! Move it away, and try again.
npm ERR! Refusing to delete C:\Program Files\nodejs\npm.cmd: is outside C:\Program Files\nodejs\node_modules\npm and not a link
npm ERR! File exists: C:\Program Files\nodejs\npm.cmd
npm ERR! Move it away, and try again.
以上是 如何重新安装损坏的npm 的全部内容, 来源链接: utcz.com/qa/436345.html