14

即使您安装了 libyaml,libyaml 警告也不会消失

gem install bundler
/home/ec2-user/.rvm/rubies/ruby-1.9.3-p392/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.
Fetching: bundler-1.3.4.gem (100%)
Successfully installed bundler-1.3.4
4

3 回答 3

21

首先删除任何以前的 yaml 文档

cd .rvm/src
sudo rm -rf yaml*

然后您可以通过以下方式完成其余的安装 -

rvm pkg install libyaml

PS 在此之后您将需要重新安装 ruby​​。


更新:如果rvm pkg似乎已被弃用。您可以自己编译源代码。你所要做的就是从 http://pyyaml.org/download/libyaml/下载最新版本的 libyaml

tar zxf yaml-0.1.4.tar.gz
cd yaml-0.1.4
./configure
make
make install


UPDATE2:顺便说一句,您仍然可以使用 rvm pkg 和/或在重新安装 ruby​​ 时确保通过以下方式启用 autolibs \curl -L https://get.rvm.io | bash -s stable --rails --autolibs=enable

于 2013-04-01T06:54:17.560 回答
13

如果使用自制软件,对我有用的临时修复是运行:

brew unlink libyaml && brew link libyaml

另外,您可能还需要运行:

brew unlink openssl && brew link --force openssl

有关更多详细信息,请参阅此问题线程:https ://github.com/wayneeseguin/rvm/issues/2689

于 2014-07-23T05:58:20.323 回答
13

我的一个朋友在他的mac上遇到了类似的问题。

brew install libyaml

最终为我们工作,我们能够避免重新安装 ruby​​。

于 2014-08-15T16:03:27.467 回答