React踩坑-安装npm install fetch-jsonp报错

在Visual Studio Code的终端控制台里面安装npm install fetch-jsonp模块的时候报出这样的错误:

PS D:\react\reactdemo> npm install fetch-jsonp
Unhandled rejection Error: EPERM: operation not permitted, open 'C:\Program Files\nodejs\node_cache\_cacache\tmp\ddf500a8'

npm ERR! cb() never called!

npm ERR! This is an error with npm itself. Please report this error at:
npm ERR!     
PS D:\react\reactdemo>
React踩坑-安装npm install fetch-jsonp报错_第1张图片

这个时候,需要打开cmd,以管理员身份运行,进入到d盘的React项目里面,运行npm install fetch-jsonp,安装fetch-jsonp模块,即可


React踩坑-安装npm install fetch-jsonp报错_第2张图片

后面总结了一下,其实最好用的办法就是在Visual Studio Code的终端控制台运行命令:

cnpm install fetch-jsonp --save
React踩坑-安装npm install fetch-jsonp报错_第3张图片

你可能感兴趣的:(React踩坑-安装npm install fetch-jsonp报错)