简体   繁体   English

如何解决“ruby 安装丢失心理”错误?

[英]how to solve “ruby installation is missing psych” error?

I used rvm to install ruby 1.9.3.我使用 rvm 安装 ruby​​ 1.9.3。 even though it was successfully installed, it complained about libyaml.即使它已成功安装,它也会抱怨 libyaml。 and now every time i wanna install a gem (say rails) this warning shows up:现在每次我想安装 gem(比如 rails)时都会出现这个警告:

It seems your ruby installation is missing psych (for YAML output). To eliminate this warning, please install libyaml and reinstall your ruby.

I use Mac os X 10.7 (Lion).我使用 Mac os X 10.7 (Lion)。

In my case就我而言

rvm pkg install libyaml

and

rvm reinstall ruby-1.9.3-p125

solved the problem.解决了这个问题。

For people using Ubuntu, make sure that libtool is installed prior to the steps above:对于使用 Ubuntu 的人,请确保在执行上述步骤之前安装了libtool

sudo apt-get install libtool

For macOS users (with homebrew):对于 macOS 用户(使用自制软件):

rm -rf /usr/local/lib/ruby/gems/ && brew reinstall ruby
brew install libyaml
rvm reinstall 1.9.3

Is what worked for me (on Snow Leopard).是什么对我有用(在雪豹上)。

If not using rvm, but rather you are building and installing ruby 1.9.3 from scratch — for example, you're managing your ruby versions with rbenv — you must install libyaml first.如果不使用 rvm,而是从头开始构建和安装 ruby​​ 1.9.3 — 例如,您正在使用rbenv管理您的 ruby​​ 版本 — 您必须先安装 libyaml。 Get it from http://pyyaml.org/ ;http://pyyaml.org/获取; at the moment, the file you want is http://pyyaml.org/download/libyaml/yaml-0.1.4.tar.gz .目前,您想要的文件是http://pyyaml.org/download/libyaml/yaml-0.1.4.tar.gz Open the tarball and cd into the resulting folder.打开 tarball 并 cd 进入生成的文件夹。 Then:然后:

./configure --prefix=/usr/local
make
sudo make install

You are now ready to build ruby.您现在已准备好构建 ruby​​。 Download ruby from http://ftp.ruby-lang.org/pub/ruby/ .http://ftp.ruby-lang.org/pub/ruby/下载 ruby​​。 Open the tarball and cd into the resulting folder.打开 tarball 并 cd 进入生成的文件夹。 Now:现在:

./configure --prefix=/wherever/you/want/it/to/go
make
make install

(Or possibly sudo make install , depending on where you're putting it.) If using rbenv, you'll know it has worked if you switch to rbenv global 1.9.3-p194 (or whatever your version is called) and gem --version works without a warning. (或者可能sudo make install ,取决于你把它放在哪里。)如果使用 rbenv,如果你切换到rbenv global 1.9.3-p194 (或任何你的版本)和gem --version ,你就会知道它已经工作了gem --version可以在没有警告的情况下工作。 That worked for me on Mac OS X 10.6.8.这在 Mac OS X 10.6.8 上对我有用。 ( Update : I just tried this on Mac OS X 10.8.1 and it seems to have worked fine there too.) 更新:我刚刚在 Mac OS X 10.8.1 上尝试过这个,它似乎在那里也运行良好。)

for ubuntu and rvm对于 ubuntu 和 rvm

sudo apt-get install libtool
rvm pkg install libyaml
rvm reinstall 1.9.3

worked工作过

在我的情况下,解决方案是将psych gem 添加到 Gemfile。

If you have installed ruby on macOS with homebrew, try this solution .如果你已经在 macOS 上用 homebrew 安装了 ruby​​, 试试这个解决方案

rm -rf /usr/local/lib/ruby/gems/ && brew reinstall ruby

Note that this will get rid of all installed gems.请注意,这将删除所有已安装的 gem。 Best save a list of installed gems with gem list before you run this.最好在运行之前使用gem list保存已安装的gem list

I had this problem.我有这个问题。 libyaml wouldn't compile. libyaml 不会编译。 It turns out I was missing libtool.事实证明我缺少 libtool。

yum install libtool
yum install libyaml (or rvm pkg install libyaml)
rvm reinstall 1.9.3

That solved my problem.那解决了我的问题。

$ brew doctor
$ brew link libyaml

I got this fixed finally.我终于解决了这个问题。 The issue was that even though I installed libyaml with brew, it was never linked.问题是,即使我用 brew 安装了 libyaml,它也从未链接过。 I had to remove a conflicting header file and then brew link libyaml .我必须删除一个冲突的头文件,然后brew link libyaml

Installing ruby with rvm for mac osx, use autolibs to install libyaml and first uninstalling libyaml helps.使用 rvm for mac osx 安装 ruby​​,使用 autolibs 安装 libyaml 并首先卸载 libyaml 有帮助。

This worked for me:这对我有用:

brew uninstall libyaml
rvm autolibs enable
rvm reinstall ruby-2.1.1

I had the same problem (Lion 10.7.4), and fixed it by upgrading rvm then reinstalling ruby我遇到了同样的问题(Lion 10.7.4),并通过升级 rvm 然后重新安装 ruby​​ 来修复它

1) upgrade rvm https://rvm.io//rvm/install/ 1)升级rvm https://rvm.io//rvm/install/

curl -L https://get.rvm.io | bash -s stable --ruby

2) Then use rvm to reinstall ruby 1.9.3 (which had been previously installed with the earlier version of rvm) 2)然后使用rvm重新安装ruby 1.9.3(之前已经安装了较早版本的rvm)

rvm reinstall 1.9.3

I reinstalled ruby 1.9.3 with libyaml support:我用 libyaml 支持重新安装了 ruby​​ 1.9.3:

rvm reinstall 1.9.3 --with-libyaml

I made sure that I would use 1.9.3 before installing psych:在安装 psych 之前,我确保我会使用 1.9.3:

rvm use 1.9.3

I installed psych:我安装了心理:

gem install psych

None of these answers worked for me.这些答案都不适合我。

I found my answer on https://github.com/sstephenson/ruby-build/issues/119 I am on Centos 6.3 Virtual Machine.我在https://github.com/sstephenson/ruby-build/issues/119上找到了我的答案 我在 Centos 6.3 虚拟机上。

YOU MUST install libyaml before you install ruby.在安装 ruby​​ 之前,您必须安装 libyaml。 IF you ALREADY installed ruby you must get rid of the files before compiling source again!!!如果您已经安装了 ruby​​,您必须在再次编译源代码之前删除这些文件!!!

# cd to your ruby source location
rm -rf /usr/local/lib/ruby # clean out ruby files
./configure
make && make install
gem -v # check if error is fixed

I built the libyaml files separately from source and installed them in /usr/local/lib.我从源代码中单独构建了 libyaml 文件,并将它们安装在 /usr/local/lib 中。 The ruby that RVM created still did not see them, and rather than muck with the makefile or the system LD_LIBRARY_PATH I just copied /usr/local/lib/libyaml* to ~/.rvm/rubies/ruby-1.9.3-p327/lib/ RVM 创建的 ruby​​ 仍然没有看到它们,而不是使用 makefile 或系统 LD_LIBRARY_PATH 我只是将 /usr/local/lib/libyaml* 复制到 ~/.rvm/rubies/ruby-1.9.3-p327/库/

That quieted the warning.这平息了警告。

This is what worked for me on Ubuntu:这就是在 Ubuntu 上对我有用的方法:
- installing libyaml-dev (sudo apt-get install libyaml-dev) - 安装 libyaml-dev (sudo apt-get install libyaml-dev)
- installing rvm + ruby 1.9.3 - 安装 rvm + ruby​​ 1.9.3

I tried all of these answers and still wasn't able to get it working.我尝试了所有这些答案,但仍然无法使其正常工作。 I installed libyaml with homebrew and then installed Ruby 1.9.3 and 2.0.0 with rvm.我用自制软件安装了 libyaml,然后用 rvm 安装了 Ruby 1.9.3 和 2.0.0。 Each time it complained that I was missing psych (libyaml).每次它都抱怨我缺少 psych (libyaml)。 But trying to install libyaml told me it was already installed.但是尝试安装 libyaml 告诉我它已经安装了。 Rinse, repeat.冲洗,重复。 Urgh.呃。

Finally, what I did was to uninstall libyaml.最后,我所做的是卸载libyaml。 Then I enabled autolibs in rvm , which (at least in OSX) allows rvm to install and manage dependencies more directly.然后我在 rvm 中启用了自动库,它(至少在 OSX 中)允许 rvm 更直接地安装和管理依赖项。 Now when I installed the Rubies, rvm was able to install libyaml and recognize that it was in the right spot.现在,当我安装 Ruby 时,rvm 能够安装 libyaml 并识别出它位于正确的位置。

So if you've tried all of the other options, try actually removing libyaml and then installing your Rubies.因此,如果您尝试了所有其他选项,请尝试实际删除libyaml,然后安装您的 Ruby。 It's count-intuitive from the error messages, but that's what finally worked for me.从错误消息中可以看出这是直观的,但这最终对我有用。

sudo port install libyaml # or brew install libyaml
rvm get latest
rvm pkg install iconv
rvm pkg install openssl
rvm reinstall 1.9.3 --with-openssl-dir=~/.rvm/usr --with-iconv-dir=~/.rvm/usr

curl -OL http://rubyforge.org/frs/download.php/75414/linecache19-0.5.13.gem
curl -OL http://rubyforge.org/frs/download.php/75415/ruby-debug-base19-0.11.26.gem

gem install linecache19-0.5.13.gem ruby-debug-base19-0.11.26.gem -- --with-ruby-include=$rvm_path/src/ruby-1.9.3-p125/
gem install ruby-debug19

rvm reload

reload your .rvmrc (cd out, cd in)重新加载你的 .rvmrc (cd out, cd in)

bundle

I had the same problem ( Cent OS 5.7 ), none of the above solutions worked to me.我遇到了同样的问题( Cent OS 5.7 ),上述解决方案都不适用于我。

// My console warning
/usr/local/rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/yaml.rb:56:in `<top (required)>':
It seems your ruby installation is missing psych (for YAML output).
To eliminate this warning, please install libyaml and reinstall your ruby.

After doing several re-installs, I realized it's looking for yaml in ruby version of 1.9.1 instead of 1.9.3 .重新安装几次后,我意识到它正在1.9.1 ruby 版本而不是1.9.3寻找 yaml 。 So i downgraded所以我降级了

// obviously after installing `libyaml`
rvm remove all
rvm install 1.9.1
rvm use 1.9.1 --default

And it worked 8D!它工作了8D!

On CentOS 6.3 none of the above worked.在 CentOS 6.3 上,以上都不起作用。 However installing libyaml from source before installing ruby resolved the problem.但是,安装 ruby之前从源代码安装libyaml解决了这个问题。

$ wget http://pyyaml.org/download/libyaml/yaml-0.1.4.tar.gz
$ tar xzvf yaml-0.1.4.tar.gz
$ cd yaml-0.1.4
$ ./configure --prefix=/usr/local
$ make
$ sudo make install

and then接着

rvm install 1.9.3
gem install rails

I'm using我在用着

rvm 1.16.20 (version) by Wayne E. Seguin , Michal Papis [https://rvm.io/] rvm 1.16.20(版本)作者:Wayne E. Seguin,Michal Papis [https://rvm.io/]

and also got the following error during bundle install并且在捆绑安装过程中也出现以下错误

.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/yaml.rb:56:in `': It seems your ruby installation is missing psych (for YAML output). .rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/yaml.rb:56:in `':看来你的 ruby​​ 安装缺少 psych(用于 YAML 输出)。 To eliminate this warning, please install libyaml and reinstall your ruby.要消除此警告,请安装 libyaml 并重新安装 ruby​​。

Here are three different ways to resolve this error w/o having to gem install psych以下是无需 gem install psych 即可解决此错误的三种不同方法

  1. export LD_LIBRARY_PATH=/usr/local/lib导出 LD_LIBRARY_PATH=/usr/local/lib
  2. alter /etc/ld.so.conf更改 /etc/ld.so.conf

     sudo su - root echo /usr/local/lib64 >> /etc/ld.so.conf echo /usr/local/lib >> /etc/ld.so.conf ldconfig
  3. Fix rvm ruby 1.9.3 installation via修复 rvm ruby​​ 1.9.3 安装通过

    patch .rvm/scripts/functions/manage/ruby < ruby-1.9.3-LDFLAGS.patch rvm uninstall ruby-1.9.3-p194 export LDFLAGS='-L /usr/local/lib64 -L/usr/local/lib -Xlinker -R/usr/local/lib64 -Xlinker -R/usr/local/lib' rvm install ruby-1.9.3-p194 --disable-binary grep configure_args .rvm/src/ruby-1.9.3-p194/config.log # to confirm LDFLAG
$ diff  -c .rvm/{src/rvm/,}scripts/functions/manage/ruby
    *** .rvm/src/rvm/scripts/functions/manage/ruby  2012-11-10 06:28:14.000000000 +0000
    --- .rvm/scripts/functions/manage/ruby  2013-01-25 17:18:00.000000000 +0000
    ***************
    *** 106,123 ****
              # when relative is in effect libyaml is installed in ruby itself so it will be moved with ruby
              prefix_path="${rvm_rubies_path}/${rvm_ruby_string}" libyaml

    !         __rvm_update_configure_env CFLAGS="-I${rvm_rubies_path}/${rvm_ruby_string}/include"
    !         __rvm_update_configure_env LDFLAGS="-L${rvm_rubies_path}/${rvm_ruby_string}/lib"
              if [[ -d "${rvm_rubies_path}/${rvm_ruby_string}/lib64" ]]
    !         then __rvm_update_configure_env LDFLAGS="-L${rvm_rubies_path}/${rvm_ruby_string}/lib64"
              fi
            else
              libyaml_installed || libyaml # Installs libyaml

    !         __rvm_update_configure_env CFLAGS="-I${rvm_path}/usr/include"
    !         __rvm_update_configure_env LDFLAGS="-L${rvm_path}/usr/lib"
              if [[ -d "${rvm_path}/usr/lib64" ]]
    !         then __rvm_update_configure_env LDFLAGS="-L${rvm_path}/usr/lib64"
              fi
            fi

    --- 106,123 ----
              # when relative is in effect libyaml is installed in ruby itself so it will be moved with ruby
              prefix_path="${rvm_rubies_path}/${rvm_ruby_string}" libyaml

    !         __rvm_update_configure_env CFLAGS="-I${rvm_rubies_path}/${rvm_ruby_string}/include ${CFLAGS}"
    !         __rvm_update_configure_env LDFLAGS="-L${rvm_rubies_path}/${rvm_ruby_string}/lib ${LDFLAGS}"
              if [[ -d "${rvm_rubies_path}/${rvm_ruby_string}/lib64" ]]
    !         then __rvm_update_configure_env LDFLAGS="-L${rvm_rubies_path}/${rvm_ruby_string}/lib64 ${LDFLAGS}"
              fi
            else
              libyaml_installed || libyaml # Installs libyaml

    !         __rvm_update_configure_env CFLAGS="-I${rvm_path}/usr/include ${CFLAGS}"
    !         __rvm_update_configure_env LDFLAGS="-L${rvm_path}/usr/lib ${LDFLAGS}"
              if [[ -d "${rvm_path}/usr/lib64" ]]
    !         then __rvm_update_configure_env LDFLAGS="-L${rvm_path}/usr/lib64 ${LDFLAGS}"
              fi
            fi

I also struggled with the same failures with rvm install ruby-2.0.0 for many, MANY hours.我也曾多次在rvm install ruby-2.0.0同样的失败。 I had tried all the different methods to install libyaml;我尝试了所有不同的方法来安装 libyaml; wget source , yum and rvm . wget sourceyumrvm I also tried all of the different approaches listed in similar threads.我还尝试了类似线程中列出的所有不同方法。 Because I tried all the different methods, I had multiple installations and locations of libyaml.因为我尝试了所有不同的方法,所以我有多个 libyaml 的安装和位置。

RVM is perfectly capable of installing the necessary dependencies in ~/.rvm . RVM 完全有能力在~/.rvm中安装必要的依赖~/.rvm Simply removing the libyaml files from non-RVM install fixed this issue for me:只需从非 RVM 安装中删除 libyaml 文件即可为我解决此问题:

sudo rm /usr/local/lib/libyaml*.*

rvm reinstall ruby-2.0.0-p0

Works!作品!

NON-RVM ruby install method.非 RVM ruby​​ 安装方法。

% uname -a
Linux localhost.localdomain 2.6.32-358.el6.x86_64 #1 SMP Fri Feb 22 00:31:26 UTC 2013  x86_64 x86_64 x86_64 GNU/Linux

% cat /etc/redhat-release
CentOS release 6.4 (Final)

% wget http://apt.sw.be/redhat/el5/en/x86_64/dag/RPMS/rpmforge-release-0.3.6-1.el5.rf.x86_64.rpm
% sudo rpm -K rpmforge-release-0.3.6-1.el5.rf.*.rpm"
% sudo rpm -ivh rpmforge-release-0.3.6-1.el5.rf.*.rpm"

DISABLE rpmforge by editing this file and set enabled=0 % sudo vi /etc/yum.repos.d/rpmforge.repo通过编辑此文件并设置 enabled=0 % sudo vi /etc/yum.repos.d/rpmforge.repo 来禁用 rpmforge

% grep rpmforge ~/.aliases
alias rpmforge "sudo yum --disablerepo='*' --enablerepo='rpmforge'"

% rpmforge install libyaml libyaml-devel

% sudo yum list installed | grep libyaml
libyaml.x86_64          0.1.4-1.el5.rf  @rpmforge                               
libyaml-devel.x86_64    0.1.4-1.el5.rf  @rpmforge  

The libyaml-devel is the key. libyaml-devel 是关键。

% tar zxvf ruby-1.9.3-p448.tar.gz
% cd ruby-1.9.3-p448
% ./configure -prefix=$HOME/ruby-1.9.3-p448
% make ; make install
% cd $HOME; ln -s ./ruby-1.9.3-p448 ruby

Update your path and source .cshrc更新您的路径和源 .cshrc

% echo $PATH
/home/francis/ruby/bin:/usr/sbin:/home/francis/bin:/home/francis/jdk1.7.0_25/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/bin

% which ruby
/home/francis/ruby/bin/ruby

% gem update --system

Set your GEM_HOME in .cshrc and source在 .cshrc 和 source 中设置您的 GEM_HOME

% echo $GEM_HOME
% /home/francis/ruby/lib/ruby/gems

% gem install mysql2 pg ruby-debug-ide rails capistrano capistrano-ext passenger

If you are building ruby from source (I built 1.9.3 on Fedora 20), you will need this before you do the configure/make to build ruby:如果您正在从源代码构建 ruby​​(我在 Fedora 20 上构建了 1.9.3),则在执行 configure/make 构建 ruby​​ 之前需要它:

yum install libyaml-devel

(in addition to yum install libyaml.) Similar to Francis's answer using rpmforge above. (除了 yum install libyaml。)类似于上面使用 rpmforge 的 Francis 的回答。

I was having this error and noticed I had different versions of Ruby installed with HomeBrew, along with many gems that I no longer used.我遇到了这个错误,并注意到我在 HomeBrew 中安装了不同版本的 Ruby,以及许多我不再使用的 gem。 So did a full clean up like this:所以做了这样的全面清理:

$ brew remove --force ruby # remove all versions installed
$ sudo rm -rf /usr/local/lib/ruby # remove all gems and leftover files
$ brew install ruby
$ gem install bundler
$ bundle install

If you don't use a Gemfile , make sure you know which gems to reinstall.如果您不使用Gemfile ,请确保您知道要重新安装哪些 gem。

In my case all I needed to do was就我而言, 我需要做的就是

rm -rf /usr/local/lib/ruby/gems/2.4.0/gems/psych-2.2.4
rm -rf /usr/local/lib/ruby/gems/2.4.0/extensions/x86_64-darwin-16/2.4.0/psych-2.2.4

Now, FWIW, gem list includes现在,FWIW, gem list包括

psych (2.2.4, default: 2.2.2)
  • Ubuntu Ubuntu
  • Using RVM使用 RVM
  • Reason: Conflicting Psych gem versions between ruby 2.4.4 and ruby 2.5.1原因:ruby 2.4.4 和 ruby​​ 2.5.1 之间的 Psych gem 版本冲突

I spent a few hours trying to get my error to go away and none of the replies here suited my case, so I thought I would post how I solved it...我花了几个小时试图让我的错误消失,但这里没有一个回复适合我的情况,所以我想我会发布我如何解决它......

In my case when I ran gem list | grep psych就我而言,当我运行gem list | grep psych gem list | grep psych , I had the following output: psych(default: 3.1.0, default: 3.0.2) . gem list | grep psych ,我有以下输出: psych(default: 3.1.0, default: 3.0.2)

Apparently since version 2.5.0, ruby depends on the newer version of psych (3.1.0) and having both set as default was messing up everything.显然,从 2.5.0 版开始,ruby 依赖于较新版本的 psych (3.1.0),并且将两者都设置为默认值会搞砸一切。 Notice that I never ended up finding out why those were both set as default - I completely wiped out rvm and ruby versions from my computer due to this.请注意,我最终没有弄清楚为什么它们都被设置为默认值 - 由于这个原因,我从我的计算机中完全清除了 rvm 和 ruby​​ 版本。

So in order to remove the older version (3.0.2) from being set as default, head to ~/.rvm/gems/ruby-xxx@global/specifications/default .因此,为了将旧版本 (3.0.2) 设置为默认值,请前往~/.rvm/gems/ruby-xxx@global/specifications/default If you run ls | grep psych如果你运行ls | grep psych ls | grep psych it will return both versions of the gem here. ls | grep psych它将在这里返回 gem 的两个版本。 If you want to maintain 3.1.0 as default just run mv psych-3.0.2.gemspec ../ and then try running gemlist to make sure it is listing only one version as default now...如果您想将 3.1.0 保持为默认值,只需运行mv psych-3.0.2.gemspec ../然后尝试运行gemlist以确保它现在仅列出一个默认版本...

tl;dr cd /.rvm/gems/ruby-xxx@global/specifications/default mv psych-3.0.2 ../ tl;dr cd /.rvm/gems/ruby-xxx@global/specifications/default mv psych-3.0.2 ../

Hope this helps someone!希望这可以帮助某人!

On Snow Leopard, the solution by Catharz did not work for me.在 Snow Leopard 上,Catharz 的解决方案对我不起作用。 This solution, however, did:但是,此解决方案确实:

brew install libyaml
rvm get head
rvm reinstall 1.9.3  --with-gcc=clang

(The rvm reinstall gave me a warning about clang not having the option "--with-libyaml" but it solved the error message regardless.) (rvm重新安装给了我一个关于clang没有选项“--with-libyaml”的警告,但无论如何它解决了错误消息。)

This worked for me at least on Ubuntu 10.04这至少在 Ubuntu 10.04 上对我有用

$ sudo apt-get install libtool $ sudo apt-get install libtool

$ rvm reinstall 1.9.3 $ rvm 重新安装 1.9.3

On Solaris:在 Solaris 上:

# sudo crle -64 -l /usr/local/lib

to add /usr/local/lib to the shared library search path (see man crle)/usr/local/lib添加到共享库搜索路径(参见 man crle)

When I switch from 64 bit to 32 bit on Snow Leopard 10.6.8, I had reinstalled ruby (used rvm) to run on 32bit and met the same problem.当我在 Snow Leopard 10.6.8 上从 64 位切换到 32 位时,我重新安装了 ruby​​(使用 rvm)以在 32 位上运行并遇到同样的问题。 So I just 'cleanup' all thing that cached by rvm before and problems solved.因此,我只是“清理”了 rvm 之前缓存的所有内容并解决了问题。 Hope this tip can help someone.希望这个提示可以帮助某人。

rvm cleanup all rvm 清理所有

rvm install ruby_version_here //(This way, rvm will also re-download newest yaml). rvm install ruby​​_version_here //(这样rvm也会重新下载最新的yaml)。

BTW, if you still meet this problem, I think you can try: BTW,如果你仍然遇到这个问题,我想你可以尝试:

gem install psych宝石安装心理

For those with Mountain Lion and RVM version >= 1.18.x 适用于Mountain Lion和RVM版本> = 1.18.x的用户

RVM ships with this new tool that is used as a flag when installing ruby versions. RVM附带了这个新工具,在安装ruby版本时用作标志。 It's called autolibs. 它被称为autolibs。

I got rid of this psych problem by doing the following: 我通过以下方式解决了这个心理问题:

rvm reinstall ruby-1.9.3-p392 --autolibs=3

Read the help text BEFORE by doing: 通过以下方式阅读帮助文本:

rvm help autolibs

Cool. 凉。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM