Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7502809
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T20:59:52+00:00 2026-05-29T20:59:52+00:00

For some reason everytime I reboot my computer I have to redo a lot

  • 0

For some reason everytime I reboot my computer I have to redo a lot of Ruby on Rails setup. I have to redo the “bundle install” to install all of the gems in my Gemfile, and then I have to reinstall rails with “gem install rails” even though I installed rails through RVM. I have never had this issue on another computer with other setups so I’m not sure what is going wrong.

Below is some terminal output that will hopefully help someone debug what is going wrong.

$ rails

Rails is not currently installed on this system. To get the latest version, simply type:

$ sudo gem install rails

You can then rerun your “rails” command.

$ rvm -v

rvm 1.10.2 by Wayne E. Seguin , Michal Papis [https://rvm.beginrescueend.com/]

$ rvm info

ruby-1.9.2-p290@demoapp:

system:
uname: “Darwin Jonathans-Mac-Pro.local 11.2.0 Darwin Kernel Version 11.2.0: Tue Aug 9 20:54:00 PDT 2011; root:xnu-1699.24.8~1/RELEASE_X86_64 x86_64”
bash: “/bin/bash => GNU bash, version 3.2.48(1)-release (x86_64-apple-darwin11)”
zsh: “/bin/zsh => zsh 4.3.11 (i386-apple-darwin11.0)”

rvm:
version: “rvm 1.10.2 by Wayne E. Seguin , Michal Papis [https://rvm.beginrescueend.com/]”
updated: “11 hours 11 minutes 19 seconds ago”

ruby:
interpreter: “ruby”
version: “1.9.2p290”
date: “2011-07-09”
platform: “x86_64-darwin11.2.0”
patchlevel: “2011-07-09 revision 32553”
full_version: “ruby 1.9.2p290 (2011-07-09 revision 32553) [x86_64-darwin11.2.0]”

homes:
gem: “/Users/joncalhoun/.rvm/gems/ruby-1.9.2-p290@demoapp”
ruby: “/Users/joncalhoun/.rvm/rubies/ruby-1.9.2-p290”

binaries:
ruby: “/Users/joncalhoun/.rvm/rubies/ruby-1.9.2-p290/bin/ruby”
irb: “/Users/joncalhoun/.rvm/rubies/ruby-1.9.2-p290/bin/irb”
gem: “/Users/joncalhoun/.rvm/rubies/ruby-1.9.2-p290/bin/gem”
rake: “/Users/joncalhoun/.rvm/gems/ruby-1.9.2-p290@demoapp/bin/rake”

environment:
PATH: “/Users/joncalhoun/.rvm/gems/ruby-1.9.2-p290@demoapp/bin:/Users/joncalhoun/.rvm/gems/ruby-1.9.2-p290@global/bin:/Users/joncalhoun/.rvm/rubies/ruby-1.9.2-p290/bin:/Users/joncalhoun/.rvm/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin”
GEM_HOME: “/Users/joncalhoun/.rvm/gems/ruby-1.9.2-p290@demoapp”
GEM_PATH: “/Users/joncalhoun/.rvm/gems/ruby-1.9.2-p290@demoapp:/Users/joncalhoun/.rvm/gems/ruby-1.9.2-p290@global”
MY_RUBY_HOME: “/Users/joncalhoun/.rvm/rubies/ruby-1.9.2-p290”
IRBRC: “/Users/joncalhoun/.rvm/rubies/ruby-1.9.2-p290/.irbrc”
RUBYOPT: “”
gemset: “demoapp”

$ gem -v

1.8.16

$ gem which (this doesnt returns anything oddly)

After I gem install rails:
$ rails -v

Rails 3.2.1

I am guessing this is something wrong with my gem setup but I don’t know enough to know where to dig. If you need any more information to help I can provide it and thank you for anyone who has the time to help.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T20:59:53+00:00Added an answer on May 29, 2026 at 8:59 pm

    If you’re using Rails 3.2.1 with RVM, you usually do not need to run ‘gem install’ manually.

    My guess is, you’ve installed ruby interpreter via RVM (or possibly, you haven’t installed ruby in RVM), or you haven’t configured RVM to select the default ruby interpreter.

    You can configure default ruby by (if you’re using 1.9.3-p0):

    rvm 1.9.3-p0 --default
    

    Then, the 1.9.3-p0 ruby will in effect after logging in to the shell. You can check which ruby interpreter is in use, by:

    which ruby
    

    If you correctly configured, it should be print like:

    {your-home-path}/.rvm/rubies/ruby-1.9.3-p0/bin/ruby
    

    In the post bundler-age rails app, you just need to run bundler to install required gems (onto the current gemset in RVM). If you don’t create gemset, global gemset will be used. Run:

    bundle
    

    will install all gems you need.

    Now, since RVM automatically select 1.9.3-p0 with gemset named ‘global’, you don’t need to re-install after boot (as I do).

    You can optionally create gemset for the rails app and configure per-directory basis. To configure default gemset/ruby interpreter per application, check the RVM site.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For some reason, Vim keeps using soft-tabs (tabs as spaces) everytime I'm working on
For some reason, when I try to install SQL Server 2008 Express , I
I am working on an ASP.NET MVC application. For some reason, everytime I think
I use git all the time and for some reason now every time i
For some reason I have to have a windows client application (written in C#)
For some reason every time I try to count the number of rows in
well for some strange reason IE gives me and InvalidAuthenticityToken error almost every time
For some reason I never see this done. Is there a reason why not?
For some reason when I attempt to make a request to an Ajax.net web
For some reason when I create a new namespace in Visual Studio 2008 its

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.