Compliance with RVM requirements, brew update

When I run the rvm command requirements, I get a Skipping brew update . Why is this happening on Mac 10.8.

 rvm requirements Installing requirements for osx/10.8/x86_64, might require sudo password Skipping `brew update` make sure your formulas are up to date. Doing /usr/local/etc/openssl 
+1
source share
1 answer

Try:

 rvm install 2.0.0 --autolibs=enable 

You get this message because by default RVM (head at this time) detects only available packages (read-only mode), Homebrew developers requested that RVM does not automatically use Homebrew to install libraries, we (RVM) are working to make all the output cleaner, so it’s easy to switch to the correct integration mode. You can visit http://bit.ly/rvm-autolibs for more information on what the number means and what parameters are planned.

+10
source

All Articles