Reputation: 3853
My Inet connection is slow. I have downloaded Ruby 1.8.7, 1.9.1 and 1.9.2 on a 32bits machine (with RVM). Now I want to install those same ruby interpreters on my 64bits, but I don't want to download them again. Can I instruct rvm to use a local tarball?
Upvotes: 0
Views: 96
Reputation: 3705
I'm not sure that it's possible to instruct RVM to use a local tarball, but it will use any files present in $rvm_path/archives (e.g. /home/me/.rvm/archives/) instead of downloading them again from the internet.
You should be able to copy these files from one machine to another.
Upvotes: 1