如何修复npm install时的ERESOLVE无法解决依赖树问题?

35 浏览
0 Comments

如何修复npm install时的ERESOLVE无法解决依赖树问题?

这个问题已经有了答案

安装npm包时出现无法解决依赖树错误

我相对较新于Angular,目前正在自学。之前一切都很顺利,直到我决定将许多新东西导入到我的项目中。长话短说,我发现我可以删除node_modules并运行npm install。删除后,当我运行npm install时,我会得到以下错误:

npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolving: appla-katta@0.0.0
npm ERR! Found: @angular/common@12.2.16
npm ERR! node_modules/@angular/common
npm ERR!   @angular/common@"~12.2.0" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer @angular/common@"^14.0.0 || ^15.0.0" from @angular/cdk@14.0.2
npm ERR! node_modules/@angular/cdk
npm ERR!   @angular/cdk@"14.0.2" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!
npm ERR! See C:\Users\kavis\AppData\Local\npm-cache\eresolve-report.txt for a full report.
npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\kavis\AppData\Local\npm-cache\_logs\2022-06-20T10_45_13_413Z-debug-0.log

我不确定错误的含义,但我认为由于我拥有不同的版本,所以存在依赖性错误,我想。我尝试运行 npm install @angular/cdk@latestng update @angular/common但没有结果。我还找到了一些更多的解决方案,如删除节点模块和package_lock.json,但npm install不起作用。

我试图强制npm install,但是因为其他原因导致我的项目无法运行,因此我希望在这里解决错误

谢谢

下面是我的package.json内容

{
  "name": "appla-katta",
  "version": "0.0.0",
  "scripts": {
    "ng": "ng",
    "start": "ng serve",
    "build": "node build && firebase deploy",
    "watch": "ng build --watch --configuration development",
    "test": "ng test"
  },
  "private": true,
  "dependencies": {
    "@angular/animations": "~12.2.0",
    "@angular/cdk": "^13.3.2",
    "@angular/common": "~12.2.0",
    "@angular/compiler": "~12.2.0",
    "@angular/core": "~12.2.0",
    "@angular/fire": "github:angular/fire",
    "@angular/flex-layout": "^13.0.0-beta.38",
    "@angular/forms": "~12.2.0",
    "@angular/material": "^13.3.2",
    "@angular/platform-browser": "~12.2.0",
    "@angular/platform-browser-dynamic": "~12.2.0",
    "@angular/router": "~12.2.0",
    "@auth0/auth0-angular": "^1.9.0",
    "@fortawesome/fontawesome-free": "^6.1.1",
    "angularfire2": "^5.4.2",
    "bootstrap": "^5.1.3",
    "cors": "^2.8.5",
    "firebase": "^7.24.0",
    "json-server": "^0.17.0",
    "rxjs": "~6.6.0",
    "tslib": "^2.3.0",
    "zone.js": "~0.11.4"
  },
  "devDependencies": {
    "@angular-devkit/build-angular": "~12.2.7",
    "@angular/cli": "~12.2.7",
    "@angular/compiler-cli": "~12.2.0",
    "@types/jasmine": "~3.8.0",
    "@types/node": "^12.11.1",
    "jasmine-core": "~3.8.0",
    "karma": "~6.3.0",
    "karma-chrome-launcher": "~3.1.0",
    "karma-coverage": "~2.0.3",
    "karma-jasmine": "~4.0.0",
    "karma-jasmine-html-reporter": "~1.7.0",
    "typescript": "~4.3.5"
  }
}

另外,我曾经有package-lock.json,现在已经删除了。

admin 更改状态以发布 2023年5月20日
0
0 Comments

先删除 node_modulespackage-lock.json

然后尝试这种方法:

npm install --legacy-peer-deps

0