Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Discover Meteor - mrt add bootstrap - Install Error

I just started the Discover Meteor Tutorial, and when I attempt to:

mrt add bootstrap

I get the following error:

usr/local/lib/node_modules/meteorite/lib/project.js:225
      throw("Package named " + pkgName + " doesn't exist in your meteor in
                                       ^
Package named bootstrap doesn't exist in your meteor installation, smart.json, or on    
atmosphere

Any thoughts? Thank you.

like image 672
damianesteban Avatar asked Sep 16 '14 23:09

damianesteban


2 Answers

update 3/2/14:

It looks like the book now supports the official bootstrap package which you can get via:

$ meteor add twbs:bootstrap

old answer:

It looks like they have not updated the book for the new packaging system. You have some choices when it comes to which bootstrap version to use. I'm not sure which one the book expects, but you could try the default that comes with meteor:

$ meteor add bootstrap

Note we are replacing mrt with meteor.

If you want bootstrap 3, then you could try:

$ meteor add mizzao:bootstrap-3
like image 142
David Weldon Avatar answered Oct 13 '22 02:10

David Weldon


mrt add bootstrap-3

is worked for me. Hope this help!

like image 21
Tam Mai Avatar answered Oct 13 '22 03:10

Tam Mai