Skip to content

Instantly share code, notes, and snippets.

@clodo
Created February 14, 2017 15:06
Show Gist options
  • Save clodo/734a2280e248d577d91b5d22d69576ab to your computer and use it in GitHub Desktop.
Save clodo/734a2280e248d577d91b5d22d69576ab to your computer and use it in GitHub Desktop.
Install Ruby
cd
git clone https://github.com/rbenv/rbenv.git ~/.rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(rbenv init -)"' >> ~/.bashrc
exec $SHELL
git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
echo 'export PATH="$HOME/.rbenv/plugins/ruby-build/bin:$PATH"' >> ~/.bashrc
exec $SHELL
rbenv install 2.4.0
rbenv global 2.4.0
ruby -v
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment