简体   繁体   中英

Ubuntu 11.10 RVM Installation Error

On a fresh Rackspace instance, I try installing RVM with this:

bash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer)

Then it gives me this error: -sh: Syntax error: redirection unexpected

I've seen fixes with "source ~/.bash_profile", but that gives me another error "-sh: source: not found"

Why don't you do it the intuitive way:

wget https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer
chmod +x ./rvm-installer
bash ./rvm-installer

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM