Skip to content

Instantly share code, notes, and snippets.

@mribica
Created July 6, 2013 14:07
Show Gist options
  • Save mribica/5939991 to your computer and use it in GitHub Desktop.
Save mribica/5939991 to your computer and use it in GitHub Desktop.
Fix "ruby installation is missing psych (for YAML output). To eliminate this warning, please install libyaml and reinstall your ruby."

Install libyaml

$ wget http://pyyaml.org/download/libyaml/yaml-0.1.4.tar.gz
$ tar zxf yaml-0.1.4.tar.gz
$ cd yaml-0.1.4
$ ./configure
$ make
$ sudo make install

Reinstall ruby-2.0.0

$ rvm reinstall ruby-2.0.0 --autolibs=enable
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment