浏览文章
文章信息
npm ERR! enoent ENOENT: no such file or directory, access ‘×××××××××××××××××××××'
15478
1、报错
npm ERR! enoent ENOENT: no such file or directory, access ‘×××××××××××××××××××××'
2、解决
第一种情况:
原因:你的node_modules目录权限配置或者出现其他异常
解决:删除项目下node_modules目录,重新使用npm install安装
第二种情况:
原因:安装了cnpm却使用npm安装项目,因为cnpm接管(目录使用者身份切换了)了npm的node.js模块,导致npm无法使用node_modules。
解决:使用cnpm安装即可。