Genadinik
Genadinik

Reputation: 18649

Ruby on Rails - bundler command not recognized after install on windows

I just installed Ruby 1.8.7 on Windows 7 and the shell recognizes the ruby command, but not when I try to run bundle install

Is that common or expected? How do I get the bundler to work?

Thanks!

Upvotes: 3

Views: 2976

Answers (1)

Holger Just
Holger Just

Reputation: 55888

Make sure the bundler gem is installed. It might not be included in your ruby distribution

gem install bundler

Upvotes: 12

Related Questions