Translation(s): English - Italiano - Japanese


Ruby in Debian

This page documents how to install and use Ruby in Debian. For information about the development of Debian Ruby packages, please see Teams/Ruby.

This page is also available through this shortened URL: http://deb.li/ruby

Available interpreters in Debian 11 (bullseye)

Interpreter

Package

Notes

MRI 2.7.4

ruby2.7

Available interpreters in Debian 10 (buster)

Interpreter

Package

Notes

MRI 2.5.5

ruby2.5

JRuby 9.1.17

jruby

Available interpreters in Debian 8 (jessie)

Interpreter

Package

Notes

MRI 2.1.5

ruby2.1

JRuby 1.5.6

jruby

Unfortunately Rubinius did not make it into jessie.

As there are no (MRI) alternatives to choose from, update-alternatives support has been removed. (Longer explanation about the alternatives removal can be found here: https://lists.debian.org/debian-ruby/2014/03/msg00077.html and here: https://lists.debian.org/debian-project/2014/02/msg00028.html )

Available interpreters in Debian 7 (wheezy)

The following Ruby interpreters are available in Debian Wheezy:

Interpreter

Package

Notes

MRI 1.8.7

ruby1.8

MRI 1.9.3

ruby1.9.3

JRuby

jruby

Rubinius

rubinius

Work in progress, not actually available yet

It's possible to switch between different Ruby interpreters as the default "ruby" program by using update-alternatives. But when you change "ruby", you probably also want to change the default "gem", "irb", etc, so there are shortcuts to changing all of those at once.

Selecting the default Ruby interpreter system-wide (wheezy only)

To select the default Ruby interpreter on a system-wide basis, you can use the ruby-switch package. This needs to be done as root (or with sudo).

# ruby -v
ruby 1.8.7 (2011-06-30 patchlevel 352) [x86_64-linux]
# ruby-switch --list
ruby1.8
ruby1.9.1
# ruby-switch --set ruby1.9.1
update-alternatives: using /usr/bin/gem1.9.1 to provide /usr/bin/gem (gem) in manual mode.
update-alternatives: using /usr/bin/ruby1.9.1 to provide /usr/bin/ruby (ruby) in manual mode.
# ruby -v
ruby 1.9.3p0 (2011-10-30 revision 33570) [x86_64-linux]
# ruby-switch --auto
update-alternatives: using /usr/bin/ruby1.8 to provide /usr/bin/ruby (ruby) in auto mode.
update-alternatives: using /usr/bin/gem1.8 to provide /usr/bin/gem (gem) in auto mode.
# ruby -v
ruby 1.8.7 (2011-06-30 patchlevel 352) [x86_64-linux]

Selecting the default Ruby interpreter on a per-user basis (wheezy)

Note: the instructions here use the command "rbenv alternatives", which is not available in Debian jessie.

To select the default Ruby for a given user account, you should use the rbenv package:

$ ruby -v
ruby 1.8.7 (2011-06-30 patchlevel 352) [x86_64-linux]
$ rbenv init 
# Load rbenv automatically by adding
# the following to ~/.bash_profile:

eval "$(rbenv init -)"
$ echo 'eval "$(rbenv init -)"' >> ~/.bash_profile # or ~/.bashrc, depends on your setup
$ rbenv versions
$ rbenv alternatives 
$ rbenv versions
  1.8.7-debian
  1.9.3-debian
$ rbenv global 1.9.3-debian 
$ ruby -v
ruby 1.8.7 (2011-06-30 patchlevel 352) [x86_64-linux]

It looks like it didn't work, but that's because the current shell already cached /usr/bin/ruby as the location of "ruby". After you start a new shell, you will be able to switch the default ruby back and forth:

$ ruby -v
ruby 1.8.7 (2011-06-30 patchlevel 352) [x86_64-linux]
$ rbenv global 1.9.3-debian 
$ ruby -v
ruby 1.9.3p0 (2011-10-30 revision 33570) [x86_64-linux]
$ rbenv global 1.8.7-debian 
$ ruby -v
ruby 1.8.7 (2011-06-30 patchlevel 352) [x86_64-linux]

Installing Ruby versions not packaged in Debian

You can use the ruby-build package to install Ruby interpreters that are not available in Debian. Note, however, what's written in the package README.Debian file:

  1. BalasankarC/DebianRuby
  2. BalasankarC/DebianRuby/Packaging
  3. BalasankarC/DebianRuby/Packaging/Conventions
  4. BalasankarC/DebianRuby/Packaging/TestFailures
  5. BalasankarC/DebianRuby/Packaging/Tests
  6. JongminKim/Drafts/RubyPackaging
  7. Packaging/ruby-team-meta-build
  8. ReproducibleBuilds/TimestampsInRubyDocumentation
  9. Ruby
  10. Ruby/Packaging/Tests
  11. Ruby/Packaging/newUpstreamRailsApp
  12. SummerOfCode2020/ApprovedProjects/UpstreamDownstreamCooperationInRuby
  13. SummerOfCode2020/UnApprovedProjects/UpstreamDownstreamCooperationInRuby
  14. Teams/DebianRubyExtras
  15. Teams/Ruby
  16. Teams/Ruby/CrossBuilding
  17. Teams/Ruby/Drafts/StateOfTransitionNewPolicy
  18. Teams/Ruby/Drafts/StateOfTransitionNewPolicyReleaseTeam
  19. Teams/Ruby/Drafts/SwitchToOneNine
  20. Teams/Ruby/IRCMeetings
  21. Teams/Ruby/InterpreterTransitions
  22. Teams/Ruby/Jessie
  23. Teams/Ruby/Meeting/Brazil2016
  24. Teams/Ruby/Meeting/Kochi2024
  25. Teams/Ruby/Meeting/Paris2014
  26. Teams/Ruby/Meeting/Paris2015
  27. Teams/Ruby/Meeting/Paris2015/Report
  28. Teams/Ruby/Meeting/Paris2020
  29. Teams/Ruby/Meeting/Paris2023
  30. Teams/Ruby/Meeting/Paris2025
  31. Teams/Ruby/Packaging
  32. Teams/Ruby/Packaging/Archive
  33. Teams/Ruby/Packaging/Conventions
  34. Teams/Ruby/Packaging/ITP
  35. Teams/Ruby/Packaging/Obsolete
  36. Teams/Ruby/Packaging/RailsApps
  37. Teams/Ruby/Packaging/RailsEngines
  38. Teams/Ruby/Packaging/Tests
  39. Teams/Ruby/Packaging/TransitionsPrimer
  40. Teams/Ruby/Packaging/gem2deb
  41. Teams/Ruby/Packaging/newUpstreamRailsApp
  42. Teams/Ruby/Packaging/origsource
  43. Teams/Ruby/RSpec3
  44. Teams/Ruby/Rails3
  45. Teams/Ruby/Rails3 (foo.tar.gz)
  46. Teams/Ruby/Rails3 (testapp.tar.gz)
  47. Teams/Ruby/Rails4.2
  48. Teams/Ruby/Rails6
  49. Teams/Ruby/Rails6/DependenciesTransition
  50. Teams/Ruby/Rails6/RailsBreakingChanges
  51. Teams/Ruby/Rails6/ReverseDependenciesTransition
  52. Teams/Ruby/Ruby2.2
  53. Teams/Ruby/RubyExtras
  54. Teams/Ruby/RubyExtras/OnRubygems
  55. Teams/Ruby/RubyExtras/Ruby19Porting
  56. Teams/Ruby/RubyExtras/RubyPackageTools
  57. Teams/Ruby/RubyExtras/UpstreamDevelopers
  58. Teams/Ruby/RubyInWheezy
  59. Teams/Ruby/Salsa
  60. Teams/Ruby/UpstreamPledge
  61. Teams/Ruby/Workflow
  62. Teams/Ruby/ruby2.5
  63. it/Ruby
  64. ja/Ruby