英文:
How can I install this dependency in angular app
问题
在使用Angular进行项目开发时,想安装依赖,但遇到了这个问题。如何解决?描述
英文:
Working on my project using angular, wanted to install dependency, but this happened. How can I fix this? Description
答案1
得分: 1
错误信息显示ngx-simple-countdown@13.0.1需要@angular/common版本13.3+,但您的项目只有~13.2.0(仅更新了修补程序版本)。
因此,您需要在运行npm i时安装@angular/common@13.3+版本,并使用"--legacy-peer-deps"选项来跳过安装对等依赖项(更多信息请参阅这里)。
英文:
Error says that ngx-simple-countdown@13.0.1 requires @angular/common version 13.3+, but your project has ~13.2.0 (updated only patch version).
So you need to install @angular/common@13.3+ version on run npm i with "--legacy-peer-deps" that will skip installing peer deps (more you can read Here)
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论