Shubham Nigam
Shubham Nigam

Reputation: 13

Why i'm getting error while install axios

package.json file package.json I have run this command

npm install axios

This is the error that I'm getting while installing axios

Upvotes: 1

Views: 208

Answers (1)

Ali Sattarzadeh
Ali Sattarzadeh

Reputation: 3587

It seems there are some version conflicts in the packages it's better to fix conflicts but if it doesn't matter and does not make any problem, you can install it using

npm install axios --force

Upvotes: 2

Related Questions