像一周前一样,我通过命令npmi-gpath安装了本地包globaly。从今天起,一切都很顺利。我尝试再次使用npm i-g路径,但出现以下错误:
npm ERR! code ENOENT
npm ERR! syscall rename
npm ERR! path "user"\AppData\Roaming\npm\node_modules\.staging\js2cp-28011c0d\node_modules\fs-extra
npm ERR! dest "user"\AppData\Roaming\npm\node_modules\.staging\fs-extra-d19736e5
npm ERR! errno -4058
npm ERR! enoent ENOENT: no such file or directory, rename '"user"\AppData\Roaming\npm\node_modules\.staging\js2cp-28011c0d\node_modules\fs-extra' -> '"user"\AppData\Roaming\npm\node_modules\.staging\fs-extra-d19736e5'
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent
npm ERR! A complete log of this run can be found in:
npm ERR! "user"\AppData\Roaming\npm-cache\_logs\2021-07-27T07_39_50_112Z-debug.log
我想进入“user”\appdata\roaming\npm\node\u modules\但我找不到文件夹。/。在node\u modules文件夹中登台。
你知道是什么导致了这个错误,以及如何修复它吗?
1条答案
按热度按时间bihw5rsg1#
你可以做一些事情来快速解决这个问题
A.清除缓存:
npm cache clean --force
B删除package.lock如果这两个对你没有帮助我就需要小心点
C删除节点模块,然后删除npm i(希望这会有所帮助)
D使用npm删除节点并重新安装
大多数情况下,a和b将为您解决问题!