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
.
- Edit google-chrome.list (assuming you’re on the Stable Channel):
sudo gedit /etc/apt/sources.list.d/google-chrome.list
- In the text file that opens edit the file so that the line reads:
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
- Try to update again:
sudo apt-get update
- Try to run RVM again:
rvm install ruby