user456584
user456584

Reputation: 88965

How to install bootstrap-3 on Meteor 0.9?

Just installed Meteor 0.9, and I get the following when trying to install bootstrap-3 in my project:

Error: conflict: foldor:bootstrap-3 can't be satisfied

This error is thrown in response the following command recommended on atmosphere:

meteor add foldor:bootstrap-3

I created a new Meteor 0.9 project to try to get this working in isolation, but I get the same error.

Upvotes: 4

Views: 1810

Answers (4)

Bruno Rivier
Bruno Rivier

Reputation: 86

1 year later, Bootstrap is officially released as a Meteor package.

See 3.3.4 changelog http://blog.getbootstrap.com/2015/03/16/bootstrap-3-3-4-released/

Bootstrap is now also available as a Meteor package in the Atmosphere package index

Upvotes: 1

FullStack
FullStack

Reputation: 6020

I found that the popular mizzao:bootstrap-3 lacks certain features, such as the duplicate icon. I recommend installing the officially supported package instead:

meteor add twbs:bootstrap

Of course, I have much gratitude for the mizzao package that has been keeping us going. Just wanted to make sure this option is known. See their GitHub for details

Upvotes: 1

Andrew Mao
Andrew Mao

Reputation: 36940

This is due to the issue I raised in https://github.com/meteor/meteor/issues/2443.

I forked the package and published a version that would not raise this error. See the other answer for how to install it.

Upvotes: 1

Kako
Kako

Reputation: 251

Someone forked the repo and published another version, since the original maintainer was taking a while to answer a pull request to update the package. The following seems to work fine.

meteor add mizzao:bootstrap-3

Upvotes: 14

Related Questions