安装Bootstrap 4时使用npm解析依赖关系

时间:2017-08-29 18:52:40

标签: twitter-bootstrap npm bootstrap-4

使用npm安装Bootstrap 4时会显示以下错误:

npm WARN bootstrap@4.0.0-beta requires a peer of jquery@>=3.0.0 but none was installed. 
npm WARN bootstrap@4.0.0-beta requires a peer of popper.js@^1.11.0 but none was installed.

我正在使用Git Bash,我也尝试单独安装jQuery,但无法安装。 你能帮我解决一下这些问题吗?

2 个答案:

答案 0 :(得分:26)

您需要安装这些依赖项并将其保存到package.json

npm install jquery@3.0.0 --save npm install popper.js@1.11.0 --save

npm install

The docs

答案 1 :(得分:2)

也尝试一下:

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