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

ruby, ruby-on-rails

Solution

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

gem install bundler

Problem

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!

Original source