GreetingsFriend
GreetingsFriend

Reputation: 331

npm react-native unmet peer dependency

I've been trying to display a svg image on a react-native project, using react-native-svg-uri

Im using react:

"react": "16.0.0-alpha.12"

Whenever i try to npm install --save react-native-svg-uri in my project, i get console warning

UNMET PEER DEPENDENCY react@>=15.4.0

I already tried to npm install --save react@>=15.4.0, but then, i get an error saying that react@>=15.4.0 is also an unmet dependency.

It seems that i have to upgrade my react to >=15.4.0... How do i upgrade it?

Upvotes: 2

Views: 1979

Answers (1)

Miodrag Smolovic
Miodrag Smolovic

Reputation: 369

Try updating npm.

If you are on linux, try updating npm using npm itself (globally):

sudo npm install npm -g

Upvotes: 1

Related Questions