I'm trying to learn Ruby on Rails. Currently been trying out Rails framework. I've installed it. Create new project, but when I try to run:
rails server
I get back an error:
Could not find gem 'rails (= 4.2.5.1) x86-mingw32' in any of the gem sources listed in your Gemfile or available on this machine.
Run bundle install
to install missing gems.
I've installed bundle as suggested. Had few problems with installing it as well, but I've found a soultion on the internet.
Before bundle install I was getting another error saying that could not find gem 'tzinfo-data (>=0) x86-mingw32'; so i installed this gem: gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw] ; and it worked.
I'm running windows 7, please help, BIG THANKS.
$PATH
. Can you post the output ofecho %path%
from your console? – Umang Raghuvanshi