國人的博客写的比较懒,个人从stack
over flow 查找到这个问题,大概就是....
React Native를 업그레이드하기 위해 npm install React-native@0.40.0 --save
를 사용하고 있는데 "UNMET PEER DEPENDENCY React-native@0.40.0"이라는 오류가 계속 발생합니다. 0". npm install react-native@0.40.0 --save
to upgrade React Native, but I keep getting an error that I have an "UNMET PEER DEPENDENCY react-native@0.40.0".
This confuses me because I thought I had just installed react-native@0.40.0.
Those error messages can be really poorly worded. I've seen this same thing; it's reporting that you have react-native@0.40.0
installed, but something else is requesting a different version.
I'd suggest doing an npm ls
; it will give you a better picture of all the peer dependency requirements and what's wrong.
이러한 오류 메시지는 정말 형편없는 표현일 수 있습니다. 나도 똑같은 것을 본 적이 있다. react-native@0.40.0
이 설치되어 있다고 보고되지만 다른 것이 다른 버전을 요청하고 있습니다.
npm ls
를 수행하는 것이 좋습니다. 이는 모든 피어 의존성 요구 사항과 무엇이 잘못되었는지에 대한 더 나은 그림을 제공할 것입니다.🎜🎜
🎜 🎜
위 내용은 xdl@42.0.0'에는 충족되지 않은 피어 종속성 'react@16.0.0-alpha.12 솔루션이 있습니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!
npm ls
, and it appears that I have two conflicting requirements: one forreact-native@^0.33.0
and another forreact-native@>=0.40
. Is there any way this can be resolved? – user2421192 Jan 8 at 6:58