Reputation: 377
After I installed rvm using the following command in my Fedora 12 system:
\curl -L https://get.rvm.io | bash -s stable –ruby
When I want to use rvm, it says
rvm: command not found
I want to use rvm for: rvm install 1.9.3
What is the solution.
Upvotes: 0
Views: 1050
Reputation: 2337
Your command uses an en-dash ('–', U+2013):
\curl -L https://get.rvm.io | bash -s stable –ruby
but the installation instructions at https://rvm.io/rvm/install/ use a double ASCII dash, '--':
\curl -L https://get.rvm.io | bash -s stable --ruby
Upvotes: 4