Am getting the below error while trying to install ruby using rvm:
$rvm install 1.9.3
Searching for binary rubies, this might take some time.
Checking requir
RVM will not install ruby if apt-get is failing. I had the same issue and noticed when running apt-get update
, it was failing on "google-chrome.list". I fixed it following these directions and was then able to successfully run apt-get update
, which then allowed me to run rvm install ruby
.
sudo gedit /etc/apt/sources.list.d/google-chrome.list
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
sudo apt-get update
rvm install ruby