簡體   English   中英

當我運行 npm 時安裝反應貨幣格式。 我收到以下錯誤? 我能做些什么?

[英]when i run npm install react-currency format . I'm getting the below error? what can i do?

PS C:\Users\ELCOT\amazon-clone-app> npm install react-currency-format    
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolving: amazon-clone-app@0.1.0
npm ERR! Found: react@17.0.2
npm ERR! node_modules/react
npm ERR!   react@"^17.0.1" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer react@"^0.14 || ^15.0.0-rc || ^15.0.0 || ^16.0.0-rc || ^16.0.0" from react-currency-format@1.0.0
npm ERR! node_modules/react-currency-format
npm ERR!   react-currency-format@"*" 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\ELCOT\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\ELCOT\AppData\Local\npm-cache\_logs\2021-03-24T17_38_45_526Z-debug.log
PS C:\Users\ELCOT\amazon-clone-app> 

運行這個 cmd npm install react-currency-format --save --force

你還沒有安裝反應。 在安裝 react-currency-format 之前,您必須先安裝 react。 如下所示,沒有安裝 react。

npm ERR:無法解析依賴關系。 npm 錯誤。 peer react@"^0.14 || ^15.0.0-rc || ^15.0.0 || ^16.0.0-rc || ^16.0.0" 來自 react-currency-format@1.0.0

你可以看到它需要先安裝 react。 做一個

npm i react

然后做

npm i react-currency-format

第一個有效,第二個無效

目前,React 已經提出了一個更新。 所以,這個 package 必須通過使用 --force 和 --save 一起強制安裝。

 npm install react-currency-format --save --force

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM