vue-admin-beautiful:npm ERR! code ERESOLVE && npm ERR! code E451

Posted Lucifer_QMY

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue-admin-beautiful:npm ERR! code ERESOLVE && npm ERR! code E451相关的知识,希望对你有一定的参考价值。

记录一个离谱的编译错误。

克隆vue-admin-beautiful项目,master分支可以正常拉取,vue3.0-antdv编译报下面的错误。

尝试一:

$ cnpm install

Install fail! Error: GET https://registry.npmmirror.com/vab-config response 451 status

Error: GET https://registry.npmmirror.com/vab-config response 451 status

尝试二:

$ npm install

npm ERR! code ERESOLVE

npm ERR! ERESOLVE unable to resolve dependency tree

npm ERR!

npm ERR! While resolving: vue-admin-beautiful-antdv@1.0.0

npm ERR! Found: eslint@7.32.0

npm ERR! node_modules/eslint npm ERR! dev eslint@"^7.30.0" from the root project npm ERR!

npm ERR! Could not resolve dependency: npm ERR! peer eslint@">= 1.6.0 < 7.0.0" from @vue/cli-plugin-eslint@4.5.19 npm ERR! node_modules/@vue/cli-plugin-eslint

有错误说是npm版本问题,npm7在编译的时候会更加严格。我换成npm6和npm8都不行。并尝试了多个版本的npm替代包——cnpm、pnpm。

最终的解决方案是

1、npm源换成腾讯源(taobao的地址都install不了 ,试试可以更换其他的registry源地址。)

 npm config set registry http://mirrors.cloud.tencent.com/npm/

2、然后这个编译命令

npm install --legacy-peer-deps

3、启动 npm run serve --fix

 

React项目创建报错解决方案npm ERR! code 1 npm ERR! path E:Node1untitled5 ode_modulesfibers npm ERR! command

在用webstorm创建React项目时发现一个巨离谱的错误

(node:15528) ExperimentalWarning: The fs.promises API is experimental
Installing packages. This might take a couple of minutes.
Installing react, react-dom, and react-scripts with cra-template...

(node:21848) ExperimentalWarning: The fs.promises API is experimental
npm ERR! code 1
npm ERR! path E:\\Node1\\untitled5\\node_modules\\fibers
npm ERR! command failed
npm ERR! command C:\\WINDOWS\\system32\\cmd.exe /d /s /c node-gyp rebuild
npm ERR! gyp ERR! find Python
npm ERR! gyp ERR! find Python Python is not set from command line or npm configuration
npm ERR! gyp ERR! find Python Python is not set from environment variable PYTHON
npm ERR! gyp ERR! find Python checking if "python3" can be used
npm ERR! gyp ERR! find Python - "python3" is not in PATH or produced an error
npm ERR! gyp ERR! find Python checking if "python" can be used
npm ERR! gyp ERR! find Python - "python" is not in PATH or produced an error
npm ERR! gyp ERR! find Python checking if "python2" can be used
npm ERR! gyp ERR! find Python - "python2" is not in PATH or produced an error
npm ERR! gyp ERR! find Python checking if Python is C:\\Python37\\python.exe
npm ERR! gyp ERR! find Python - "C:\\Python37\\python.exe" could not be run
npm ERR! gyp ERR! find Python checking if Python is C:\\Python27\\python.exe
npm ERR! gyp ERR! find Python - "C:\\Python27\\python.exe" could not be run
npm ERR! gyp ERR! find Python checking if the py launcher can be used to find Python
npm ERR! gyp ERR! find Python - "py.exe" is not in PATH or produced an error
npm ERR! gyp ERR! find Python
npm ERR! gyp ERR! find Python **********************************************************
npm ERR! gyp ERR! find Python You need to install the latest version of Python.
npm ERR! gyp ERR! find Python Node-gyp should be able to find and use Python. If not,
npm ERR! gyp ERR! find Python you can try one of the following options:
npm ERR! gyp ERR! find Python - Use the switch --python="C:\\Path\\To\\python.exe"
npm ERR! gyp ERR! find Python   (accepted by both node-gyp and npm)
npm ERR! gyp ERR! find Python - Set the environment variable PYTHON
npm ERR! gyp ERR! find Python - Set the npm configuration variable python:
npm ERR! gyp ERR! find Python   npm config set python "C:\\Path\\To\\python.exe"
npm ERR! gyp ERR! find Python For more information consult the documentation at:
npm ERR! gyp ERR! find Python https://github.com/nodejs/node-gyp#installation
npm ERR! gyp ERR! find Python **********************************************************
npm ERR! gyp ERR! find Python
npm ERR! gyp ERR! configure error
npm ERR! gyp ERR! stack Error: Could not find any Python installation to use
npm ERR! gyp ERR! stack     at PythonFinder.fail (E:\\Node1\\untitled5\\node_modules\\node-gyp\\lib\\find-python.js:302:47)
npm ERR! gyp ERR! stack     at PythonFinder.runChecks (E:\\Node1\\untitled5\\node_modules\\node-gyp\\lib\\find-python.js:136:21)
npm ERR! gyp ERR! stack     at PythonFinder.<anonymous> (E:\\Node1\\untitled5\\node_modules\\node-gyp\\lib\\find-python.js:200:18)
npm ERR! gyp ERR! stack     at PythonFinder.execFileCallback (E:\\Node1\\untitled5\\node_modules\\node-gyp\\lib\\find-python.js:266:16)
npm ERR! gyp ERR! stack     at exithandler (child_process.js:301:5)
npm ERR! gyp ERR! stack     at ChildProcess.errorhandler (child_process.js:313:5)
npm ERR! gyp ERR! stack     at ChildProcess.emit (events.js:198:13)
npm ERR! gyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:246:12)
npm ERR! gyp ERR! stack     at onErrorNT (internal/child_process.js:415:16)
npm ERR! gyp ERR! stack     at process._tickCallback (internal/process/next_tick.js:63:19)
npm ERR! gyp ERR! System Windows_NT 10.0.19042
npm ERR! gyp ERR! command "C:\\\\Program Files\\\\nodejs\\\\node.exe" "E:\\\\Node1\\\\untitled5\\\\node_modules\\\\node-gyp\\\\bin\\\\node-gyp.js" "rebuild"
npm ERR! gyp ERR! cwd E:\\Node1\\untitled5\\node_modules\\fibers
npm ERR! gyp ERR! node -v v10.16.0
npm ERR! gyp ERR! node-gyp -v v7.1.2
npm ERR! gyp ERR! not ok

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\\Users\\Yun\\AppData\\Local\\npm-cache\\_logs\\2021-08-24T09_47_49_271Z-debug.log

Aborting installation.
  npm install --save --save-exact --loglevel error react react-dom react-scripts cra-template has failed.

Deleting generated file... package.json
Done.
Done

非常离谱的错误,导致无法React项目无法创建成功,反复试了几次都是如此给我整吐了。。。。网上搜了很多资料输入各种指令下载各种npm包试图修复,试了各种方法最终都无济于事,啊啊啊啊啊啊啊啊啊快疯了,就差卸载重装了,最后在查找各路解决方案后发现了这个万恶之源!!!

在C盘User找到 .npmrc 文件
然后 狠狠删掉!

这个文件是系统默认隐藏的文件需要显示后查看

以上是关于vue-admin-beautiful:npm ERR! code ERESOLVE && npm ERR! code E451的主要内容,如果未能解决你的问题,请参考以下文章

npm install ERR! code E400/E404

React项目创建报错解决方案npm ERR! code 1 npm ERR! path E:Node1untitled5 ode_modulesfibers npm ERR! command

React项目创建报错解决方案npm ERR! code 1 npm ERR! path E:Node1untitled5 ode_modulesfibers npm ERR! command(代码片

npm run build报错Unexpected token: name...

cmd输入npm没反应,npm install 没反应

npm -S -D 区别