Rails is not using my global Ruby version

做~自己de王妃 提交于 2019-12-01 01:28:10

问题


I want to use Rails with Ruby 2.1.0, but it's using Ruby 1.9.3 (the system's version).

I'm using rbenv to manage my Ruby versions. My steps were something along the lines of:

$ rbenv install 2.1.0
$ rbenv global 2.1.0
$ sudo gem install rails -v 4.0.2
$ rbenv rehash
$ rbenv versions
  system
* 2.1.0 (set by /home/dennis/.rbenv/version)
$ ruby -v
ruby 2.1.0p0 (2013-12-25 revision 44422) [x86_64-linux]
$ rails new app && cd app
$ rails server

Rails is using is Ruby 1.9.3 (x86_64-linux), according to localhost:3000/rails/info/properties. A log message from rails server gives: INFO ruby 1.9.3 (2012-04-20) [x86_64-linux].

I think Rails is using the system version of Ruby because the versions match.

$ rbenv local system
$ ruby -v
ruby 1.9.3p194 (2012-04-20 revision 35410) [x86_64-linux]
$ rbenv local --unset  # Unset local Ruby version, go back to 2.1.0

Some things I've tried with no luck:

  • setting the local and shell versions of Ruby to 2.1.0 with rbenv
  • rehash rbenv shims (rbenv says to do this after installing executables)
  • made new Rails projects after switching to 2.1.0 just in case I made the projects while using 1.9.3
  • putting 2.1.0 in a .ruby-version file in the root of my project (suggested by @Agis)
  • restarting terminal session and starting a login bash shell (suggested by @Russel)
  • specifying the desired Ruby version in the project's Gemfile (suggested by @rlecaro2)

FWIW, I'm using Ubuntu 13.10 with the fish shell.


回答1:


You didn't tell how you installed rbenv, but I think it is per-user installation (which is default). In this case you should install gems without using sudo. When you did sudo gem install rails, it was installed in system ruby, not rbenv's selected one.

Solution - install rails without sudo:

rbenv global 2.1.0
gem install rails
rbenv rehash



回答2:


Sounds silly, but did you restart terminal session?

Otherwise try and type

 /bin/bash --login



回答3:


Try creating a .ruby-version file in the root of your project with the following contents:

2.1.0


来源:https://stackoverflow.com/questions/21141584/rails-is-not-using-my-global-ruby-version

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!