The question is very simple:
I cannot install RVM (single-user installation) as if I were following the instructions on the RVM website, namely:
$ curl -L https:
I get permission rejected in line 360 โโof the script installation file (line starting with echo):
# Perform the actual installation, first we obtain the source using whichever # means was specified, if any. Defaults to head. case "${version}" in (head) echo "${branch}" > "$rvm_path/RELEASE" install_head ${branch:-master} || exit $? ;;
Here is the error message:
olivier @ ~ $ curl -L https://get.rvm.io | bash -s stable
bash: line 360: / usr / local / rvm / RELEASE: Permission denied
If I add "sudo" to "bash" in the above command, it works fine, but then it will be a multi-user installation ...
source share