Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to install RVM to my home folder, and all the installation instructions or scripts use curl, but there is no possibility to install curl on the system (not enough permissions).

Is it possible to install RVM with wget?

share|improve this question
It's not possible to install curl, but it is possible to install multiple versions of ruby? That seems highly unlikely. – qqx Nov 26 '12 at 16:37
curl is an extremely common tool, epecially libcurl which is the backbone of many web-based tools. What system are you having trouble finding it on? – tadman Nov 26 '12 at 16:50
@qqx Why? I am logged in as a user who has no permissions to install new packages on the system, that's why I have to use only tools that are available (wget). But at the same time an isolated install to the home folder is the most common use case of RVM. – tonyo Nov 26 '12 at 16:55
1  
curl doesn't need to be installed as a package, it could also be installed into a directory in your home folder which is included in your $PATH. – qqx Nov 26 '12 at 16:57
@qqx Yes, thank you, I guess this is the easiest way in my case. – tonyo Nov 26 '12 at 17:04

1 Answer

up vote 4 down vote accepted

Is it possible? Sure, you can clone the repository and make all necessary changes in Wayne's code. It is just a bash script.

But it is listed as a requirement, and use internally, and so might be more than what you would be willing to do for this. Here is a snippet from his RVM installer file to show you how he is using it in addition to the initial curl command to kick things off, to give you an idea of the things you would need to change.

{
  curl -s https://api.github.com/repos/wayneeseguin/rvm/tags |
    sed -n '/"name": / {s/^.*".*": "\(.*\)".*$/\1/; p;}' |
    sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n |
    GREP_OPTIONS="" \grep "^${1:-}" | tail -n 1
}
share|improve this answer
I haven't noticed that 'curl' is a requirement for RVM. Thank you, I believe the local installation of 'curl' to the home folder (as @qqx suggested) is the easiest way to install RVM in my case. – tonyo Nov 26 '12 at 17:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.