Reputation: 81
When trying to run rails s, I got the above error Could not find json-1.8.6 in any of the sources Run bundle install
to install missing gems. This is what I've tried so far:
bundle install
bundle update
bundle exec bundle install
bundle update json
gem install json
gem install json -v '1.8.6'
Upvotes: 0
Views: 1995
Reputation: 81
These commands fixed the issue:
brew update
brew install coreutils
Then I ran bundle install
and json loaded properly.
Upvotes: 1