manu
manu

Reputation: 3853

How can I make RVM to use a local tarball?

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

Answers (1)

LeeXGreen
LeeXGreen

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

Related Questions