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

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/xiaochunblog/article/details/85230870

error

npm ERR! path /usr/local/lib/node_modules/webpack-cli/node_modules/wrap-ansi
npm ERR! code ENOENT
npm ERR! errno -2
npm ERR! syscall access
npm ERR! enoent ENOENT: no such file or directory, access '/usr/local/lib/node_modules/webpack-cli/node_modules/wrap-ansi'
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!     /Users/kuntao/.npm/_logs/2018-12-20T15_04_35_284Z-debug.log

解决方法

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

sudo npm install xxx -g

猜你喜欢

转载自blog.csdn.net/xiaochunblog/article/details/85230870