npm ERR! code ENOENT npm ERR! errno -2 npm ERR! syscall access

今天药忘吃喽~ 2022-04-10 02:47 454阅读 0赞

error

  1. npm ERR! path /usr/local/lib/node_modules/webpack-cli/node_modules/wrap-ansi
  2. npm ERR! code ENOENT
  3. npm ERR! errno -2
  4. npm ERR! syscall access
  5. npm ERR! enoent ENOENT: no such file or directory, access '/usr/local/lib/node_modules/webpack-cli/node_modules/wrap-ansi'
  6. npm ERR! enoent This is related to npm not being able to find a file.
  7. npm ERR! enoent
  8. npm ERR! A complete log of this run can be found in:
  9. npm ERR! /Users/kuntao/.npm/_logs/2018-12-20T15_04_35_284Z-debug.log

解决方法

这种error信息一般出现在mac电脑安装某个依赖到全局的情况下,这是因为你的权限不够,无法将此模块安装到全局环境。只需要在你的npm命令前面加上一个sudo即可。

sudo npm install xxx -g

发表评论

表情:
评论列表 (有 0 条评论,454人围观)

还没有评论,来说两句吧...

相关阅读