Stoman
Stoman

Reputation: 173

Resolving dependencies using npm while installing Bootstrap 4

While installing Bootstrap 4 using npm it show me these errors:

npm WARN [email protected] requires a peer of jquery@>=3.0.0 but none was installed. 
npm WARN [email protected] requires a peer of popper.js@^1.11.0 but none was installed.

I'm using Git Bash, I also tried to install jQuery individually but it couldn't be installed. Can someone help me to fix these issues? Manu thanks

Upvotes: 17

Views: 13704

Answers (2)

shrikant joshi
shrikant joshi

Reputation: 564

just try this as well:

npm install --save @ng-bootstrap/ng-bootstrap

Upvotes: 2

locrizak
locrizak

Reputation: 12279

You'll need to install those dependencies and save them to you package.json

npm install [email protected] --save npm install [email protected] --save

The docs for npm install

Upvotes: 30

Related Questions