Rvm requirements 'Failed to load requirements for osx_brew!'

I tried installing Ruby 2.0.0-p0 on my Mac (OS X 10.8.3) today, which failed with some problems around installing gem (unfortunately, I did not keep error logs).

Since then I have had problems with RVM and Brew - if I try to do something with RVM, it just prints an error message:

Failed loading requirements for osx_brew! 

I tried uninstalling and reinstalling both RVM and Brew, but without success, and I cannot find a link to this message on the Internet. Has anyone understood why this could happen, and how can I fix it?

+4
source share
3 answers

Same problem, I needed to update rvm - be sure to read the requirements after that;

 rvm get stable rvm requirements 
+4
source

There seems to be a problem with the latest version of RVM .. I have the same problem ... You need to try to install a stable version ...

rvm is stable

+1
source

This was a bug and has already been fixed, update with:

 rvm get head rvm install ruby --autolibs=4 
+1
source

All Articles