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
答案 0 :(得分:16)
首先删除任何以前的yaml文档
cd .rvm/src
sudo rm -rf yaml*
然后你可以通过 -
完成剩下的安装 rvm pkg install libyaml
P.S之后你需要重新安装红宝石。
<小时/> 更新:如果
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: BTW,您仍然可以使用rvm pkg和/或重新安装ruby时确保通过以下方式使用autolibs
\curl -L https://get.rvm.io | bash -s stable --rails --autolibs=enable
答案 1 :(得分:11)
如果使用自制软件,那么对我有用的临时修复就是运行:
brew unlink libyaml && brew link libyaml
加上你可能还需要运行:
brew unlink openssl && brew link --force openssl
有关详细信息,请参阅此问题主题:https://github.com/wayneeseguin/rvm/issues/2689
答案 2 :(得分:7)
我的一个朋友在他的Mac上遇到了类似的问题。
brew install libyaml
最终为我们工作,我们能够避免重新安装红宝石。