Home > Back-end >  Npm and Yarn install fail on package "@react-native-commuity/slider"
Npm and Yarn install fail on package "@react-native-commuity/slider"

Time:12-06

I tried to install the package "@react-native-commuity/slider" in my project, but with npm and yarn install, i get a 404 error (See screenshot below).

Npm error

Yarn error

I tried to check the url link but it's return a 404 not found ...

What can i do to resolve this error ? Some of you has an idea ?

Thanks a lot

CodePudding user response:

There is a spelling mistake in the package name. Try this

yarn add @react-native-community/slider

or

npm install @react-native-community/slider

CodePudding user response:

It looks like that package has been deprecated and they recommend using a community package instead

  • Related