Linux 上还没有 apt-get install ruby1.9.2 吗?
页面 http://www.ruby-lang.org/en/downloads/ 仅表示适用于 Linux 的 1.9.1。
现在我正在使用 RVM 来做一个
rvm install 1.9.2
,它需要编译。有没有apt-get install的方式来安装呢?
有没有办法列出 apt-get 可以安装的所有 Ruby 版本?
The page http://www.ruby-lang.org/en/downloads/ only says 1.9.1 for Linux.
Right now I am using RVM to do an
rvm install 1.9.2
and it needs compilation. There is no apt-get install way to install it?
Is there a way to list all Ruby version apt-get can install?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
rvm 现在支持二进制 rubies,因此无需编译:
只有 ruby 1.9.3 适合安装在相对路径中,因此不要指望早期版本可用(对于 /usr/local/rvm 之外的其他路径)。
如果
rvm list remote
为空,请告诉我您的系统rvm 信息
,您可以在 irc mpapis 的 #rvm at freenode 上找到我服务器或在此处打开票证:https://github.com/wayneeseguin/rvm/issues/new< /a>rvm now supports binary rubies, so there is no need to compile:
only ruby 1.9.3 is good for installing in relative paths so do not expect earlier versions to be available (for other path then /usr/local/rvm).
if
rvm list remote
was empty then let me know what is your systemrvm info
, you can find me on irc mpapis at #rvm at freenode servers or open a ticket here: https://github.com/wayneeseguin/rvm/issues/new在 debian scrap 和 sid 中,根据此搜索,1.9.1 软件包实际上基于 1.9.2 分支:
http://packages.debian .org/search?keywords=ruby1.9.1&searchon=names&suite=all§ion=all
变更日志也这么说:
http:// /packages.debian.org/changelogs/pool/main/r/ruby1.9.1/ruby1.9.1_1.9.2~svn28788-1/changelog
in debian squeeze and sid the 1.9.1 package is in fact based on the 1.9.2 branch according to this search:
http://packages.debian.org/search?keywords=ruby1.9.1&searchon=names&suite=all§ion=all
and the changelog says that too:
http://packages.debian.org/changelogs/pool/main/r/ruby1.9.1/ruby1.9.1_1.9.2~svn28788-1/changelog
才三个星期,给点时间吧:P
It's only been 3 weeks, give it some time :P
ruby1.9.1 可以这样做
You can do it for ruby1.9.1
要列出可用版本,您可以使用以下命令:
如果您使用 Debian,则测试时可以使用 1.8、1.9、1.9.1。 1.9.2 仅适用于不稳定版本。
To list available versions you can use the following command:
If you use Debian, 1.8, 1.9, 1.9.1 are availble on testing. 1.9.2 is only available on unstable.