Bundle Install Is Not Working
Answer :
Open the Gemfile and change first line from this
source 'https://www.rubygems.org'
to this
source 'http://www.rubygems.org'
remove the 's
' from 'https
'.
As @Wasif mentioned, first make sure the Ruby Gems site is up and your network access is ok.
If they works fine, try it like this:
First, delete your
Gemfile.lock
fileThen run
gem update --system
Then in your Gemfile try changing the first line
source 'https://rubygems.org'
tohttp://
(without ans
)
Unless there is a problem with your connectivity this should fix the issue with bundle install
.
Comments
Post a Comment