如何在 ubuntu 19.04 上安装 rvm install 2.1.1

Ash*_*arg 0 ruby rvm

在 ubuntu 19.04 上安装 ruby​​ 版本 2.1.1 时,出现错误 -

rvm install ruby-2.1.1
Searching for binary rubies, this might take some time.
No binary rubies available for: ubuntu/19.04/x86_64/ruby-2.1.1.
Continuing with compilation. Please read 'rvm help mount' to get more information on binary rubies.
Checking requirements for ubuntu.
Removing undesired packages: libssl-dev....
Installing requirements for ubuntu.
Updating system....
Installing required packages: libssl1.0-dev....
Error running 'requirements_debian_libs_install libssl1.0-dev',
please read /home/user/.rvm/log/1560773845_ruby-2.1.1/package_install_libssl1.0-dev.log
Requirements installation failed with status: 100.
Run Code Online (Sandbox Code Playgroud)

Ale*_*lke 7

您可以按照发布在此 RVM github 问题上的说明安装以前版本的 Ruby:https : //github.com/rvm/rvm/issues/4680#issuecomment-515951866

我按照@grhansen 的建议做了同样的事情。我正在安装 ruby​​ 2.3 并且需要 libssl1.0-dev。我正在使用 Ubuntu 19.04。所以我打开了我的 /etc/apt/sources.list

sudo nano /etc/apt/sources.list.

然后在文件末尾添加以下行

deb http://security.ubuntu.com/ubuntu bionic-security main.

之后我运行命令

sudo apt update

从终端。然后我运行命令

apt-cache policy libssl1.0-dev

从终端,我得到以下输出

libssl1.0-dev: Installed: (none) Candidate: 1.0.2n-1ubuntu5.3 Version table: 1.0.2n-1ubuntu5.3 500 500 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages

然后我运行命令

sudo apt-get install libssl1.0-dev

然后安装

在添加之前我得到了

libssl1.0-dev:已安装:(无)候选:(无)版本表:


Mat*_* J. 5

目前,在最近的 Ubuntu 上不再可能安装旧的 rubies。如果您需要运行旧的 ruby​​,我建议您坚持使用 Ubuntu 18.04 LTS,您仍然可以在其上安装任何您想要的 ruby​​。

2.1.x、2.2.x 和 2.3.x 不再安装在 19.04 上

我们需要一个自定义的 openssl 1.1 补丁,我不确定是否有人会解决这个问题。大多数 ruby​​ 社区已准备好继续前进。

对于生产环境,您应该坚持使用 LTS 版本。

当 20.04 LTS 出现时,ruby-core 团队本身将不再支持 ruby​​ 2.4。

https://www.ruby-lang.org/en/news/2019/03/31/support-of-ruby-2-3-has-ended/

从 Ubuntu 19.04 开始,rvm install 2.4.6是您最旧的选项, rvm install 2.6.3是当前推荐的版本

在我的 Ubuntu 18.04 上,我有

ubuntu@ip-w-x-y-z:~$ rvm list 
   ruby-2.0.0-p648 [ x86_64 ]
   ruby-2.1.8 [ x86_64 ]
   ruby-2.2.10 [ x86_64 ]
   ruby-2.2.4 [ x86_64 ]
   ruby-2.3.8 [ x86_64 ]
   ruby-2.4.6 [ x86_64 ]
=* ruby-2.6.3 [ x86_64 ]
Run Code Online (Sandbox Code Playgroud)

在我的 19.04 笔记本电脑上,我有

ubuntu@ip-w-x-y-z:~$ rvm list 
=> ruby-2.4.6 [ x86_64 ]
   ruby-2.5.5 [ x86_64 ]
 * ruby-2.6.3 [ x86_64 ]
   ruby-2.7.0-preview1 [ x86_64 ]
Run Code Online (Sandbox Code Playgroud)

我希望这有帮助