Created
May 21, 2013 15:22
-
-
Save meaganewaller/5620662 to your computer and use it in GitHub Desktop.
Attempting to do bundle install on any project, and I'm always having to install gems manually before continuing. Goes through all the gems, saying "Using [enter gem here]" and then it will get to a gem that says "Installing [gem here]", it will stall, and then give the output below. However, you can replace 'json(1.7.7)' and 'json -v '1.7.7' wi…
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Errno::EACCES: Permission denied - /Users/meaganwaller/.rvm/gems/ruby-1.9.3-p392/build_info/json-1.7.7.info | |
| An error occurred while installing json (1.7.7), and Bundler cannot continue. | |
| Make sure that `gem install json -v '1.7.7'` succeeds before bundling. | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| source 'http://rubygems.org' | |
| gem 'rspec' | |
| gem 'json', '~> 1.7.7' | |
| gem 'pry' | |
| gem 'guard-rspec' | |
| gem 'simplecov', :require => false, :group => :test |
Author
One should never do use sudo on a local rvm.
Even on a system-wide you can add your user to the rvm group and shouldn't need to use sudo either.
I'm finding I loathe system-wide RVM, though.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@gstark & @cpuguy83 The problem was fixed using Brian's suggestion of the
chown -R meaganwaller /Users/meaganwaller/.rvmThanks for helping and looking into it! Very appreciated :)