Fortuna
Fortuna

Reputation: 609

AngularJS kickstart with Yeoman - bower_components missing

I am currently learning AngularJS and the Test Driven Development concept so I was watching the introduction and now where I want to start the server via "grunt server" it throws an error with something like "bower_components directory not found". I definately installed Bower but the error still occurs.

I'm using Windows 7, I hope someone can help me.

Upvotes: 1

Views: 440

Answers (1)

Sindre Sorhus
Sindre Sorhus

Reputation: 63478

You also need to install the Bower components. Run the following in your terminal:

bower install

Upvotes: 1

Related Questions