npm ERR! code ENOLOCAL
npm ERR! Could not install from “Files\nodejs\node_cache_npx\21364” as it does not contain a package.json file.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Program Files\nodejs\node_cache_logs\2020-04-02T08_18_09_189Z-debug.log
Install for create-react-app@latest failed with code 1
解决:
“更换node cache 路径”
在项目目录下面运行:
npm config set cache "C:\Users\登录windows的用户名\AppData\Roaming\npm-cache"--global
切记目录和“--global”之间没有空格。
- 还有再使用npm install的时候,react会重新下载并更新需要的包,路径在当前文件夹下的node_modules
- 有的同学再使用的时候会提示上面的问题,或者操作不允许,网上会有教程说让使用管理员方式运行,这种回答都是杯水车薪,治标不治本的,我们要一步到位,使用上面的方法即可