Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
I ran through the configuration and it seemed that all went well. However when I tried bundle install under my app I get Your Ruby version is 1.9.3, but your Gemfile specified 2.2.1 error. I guess some configuration must have gone wrong?
This command did not source the new bash_profile:
exec $SHELL
Fixed it with:
source ~/.bash_profile
In my case it didn’t work to export the path to .bash_profile. I had to do it in .bashrc instead and it worked fine.
This comment has been deleted
For me, the step where I do rbenv install 2.2.1 leads to Installing ruby-2.2.1, and that process doesn’t seem to complete ever.
It’s been running for half an hour now without success.
Install rbenv echo ‘export PATH=“$HOME/.rbenv/bin:$PATH”’ >> ~/.bash_profile bash_profile is error, bashrc is correct on ubuntu. Ubuntu Desktop note: Modify your ~/.bashrc instead of ~/.bash_profile. https://github.com/sstephenson/rbenv
Getting an error while installing rails $ gem install rails -v 4.2.0 ERROR: While executing gem … (Errno::EACCES) Permission denied - /var/lib/gems
please help !
No, I installed Ruby by following this tutorial only. I’ve fixed the problem of ownership of files. Thanks…!
super minor, but in the Install rbenv section, you write:
git clone git://github.com/sstephenson/rbenv.git .rbenv
but (for robustness/just in case) it might be better as:
git clone git://github.com/sstephenson/rbenv.git ~/.rbenv ???
and great article, thank you!
Followed all instructions, using .bashrc at all times, and sourcing this file produces an error:
source ~/.bashrc
The program 'rbenv' is currently not installed. You can install it by typing:
sudo apt-get install rbenv
However, .bashrc seems to be OK, and the executable is there:
tail ~/.bashrc
export PATH="$HOME/.rbenv/bin:$PATH"
eval "$(rbenv init -)"
export PATH="$HOME/.rbenv/plugins/ruby-build/bin:$PATH"
ls ~/git/.rbenv/bin/
rbenv ruby-local-exec
Don’t know what could be wrong here …