npm install 出现问题的若干问题
今天clone一个项目从svn上,使用npm install下载依赖库频繁出错,折腾后,总结如下。
####问题1Error: EPERM: operation not permitted
具体错误信息如下:
42984 error Error: EPERM: operation not permitted, unlink 'C:\Users\Administrator\Desktop\frontend\plateform-frontend\node_modules\.staging\antd-ff30095a\dist\antd.js'
42984 error { Error: EPERM: operation not permitted, unlink 'C:\Users\Administrator\Desktop\frontend\plateform-frontend\node_modules\.staging\antd-ff30095a\dist\antd.js'
42984 error cause:
42984 error { Error: EPERM: operation not permitted, unlink 'C:\Users\Administrator\Desktop\frontend\plateform-frontend\node_modules\.staging\antd-ff30095a\dist\antd.js'
42984 error errno: -4048,
42984 error code: 'EPERM',
42984 error syscall: 'unlink',
42984 error path:
解决办法:
删除 C:\Users\用户名.npmrc
####问题2verbose stack SyntaxError: Unexpected end of JSON input while parsing near '...
详细错误日志如下:
4179 verbose stack SyntaxError: Unexpected end of JSON input while parsing near '...rma-sinon":"^1.0.5","'
4179 verbose stack at JSON.parse (<anonymous>)
4179 verbose stack at parseJson (C:\Users\Administrator\AppData\Roaming\npm\node_modules\npm\node_modules\json-parse-better-errors\index.js:7:17)
4179 verbose stack at consumeBody.call.then.buffer
解决办法:
运行 npm cache clean --force
####终结解决办法
如上面还不行:
可能是你连接npm库网络slow,请更换镜像为国内镜像:
淘宝镜像:npm config set registry https://registry.npm.taobao.org
cnpmjs镜像:npm config set registry http://r.cnpmjs.org/
然后如下进行:
1)删除C:\Users\用户名.npmrc
2)运行 npm cache clean --force
3)运行 cnpm install
解决完成,cnpm install没有问题,但是在npm start时报错,如下:
The ‘decorators’ plugin requires a ‘decoratorsBeforeExport’ option, whose value must be a boolean.
这个是由于ant design pro的问题,你必须使用npm来解决:
npm set registry https://registry.npmjs.org/
rm -rf node_modules/
npm cache clean --force
npm cache verify
npm install
如果还不行,我也只能帮你到这里了,剩下的路,大侠请走好
上一篇: npm install报错:ERR! configure error gyp ERR! stack Error: `gyp` failed with exit code: 1
下一篇: [视频演示].NET Core开发的iNeuOS物联网平台,实现从设备&PLC、云平台、移动APP数据链路闭环
推荐阅读
-
解决npm管理员身份install时出现权限的问题
-
解决npm管理员身份install时出现权限的问题
-
window环境下npm install node-sass报错的解决方法
-
解决npm install卡住不动的小尴尬
-
electron demo项目npm install安装失败的解决方法
-
vue npm install 安装某个指定的版本操作
-
关于npm install 安装 elementUI后不生效的问题
-
npm install -save 和 npm install -save-dev的区分
-
npm install 出现问题的若干问题
-
npm install --save 与 npm install --save-dev 的区别