npm ERR! Could not install from “Files\nodejs\node_cache\_npx\10184“ as it does not contain a packag
1. node版本>12.0.0
2.存放npm 的父级目录不能有空格,有的话回报一个code:1的错误;
解决方法:可以输入
npm config get cache
来确认是哪一级菜单出现了空格。
发现之后自行处理对应文件夹名字即可。
方法1: npm config edit // 编辑配置文件 方法2: 比如文件夹名字为progarm files npm config set cache "C:\Program~files\nodejs\node_modules\npm\node_cache"--global
以~代替空格是window支持的一种写法。更改之后就可以正常创建项目了。
(环境变量不要随便更改,可能会影响其他项目运行)