How do you uninstall rbenv on macOS?

I took these steps to successfully get rid of rbenv on my mac running El Capitan (10.11.4). Rbenv is a major cause of Failed to build gem native extension errors from my experience. Remove using brew: brew remove rbenv Delete .rbenv directory: rm -rf ~/.rbenv For Bash Open .bash_profile file and delete any lines with … Read more

Ruby Bundle Symbol not found: _SSLv2_client_method (LoadError)

I just fixed a similar issue on my system. You need to rebuild your install of Ruby 2.1.2 and it will re-link against the newly-updated SSL. $ rbenv install 2.1.2 rbenv: /Users/ryan/.rbenv/versions/2.1.2 already exists continue with installation? (y/N) y Downloading ruby-2.1.2.tar.gz… -> http://dqw8nmjcqpjn7.cloudfront.net/f22a6447811a81f3c808d1c2a5ce3b5f5f0955c68c9a749182feb425589e6635 Installing ruby-2.1.2… Installed ruby-2.1.2 to /Users/ryan/.rbenv/versions/2.1.2

rbenv not changing ruby version

Check that PATH contains $HOME/.rbenv/shims and $HOME/.rbenv/bin $ env | grep PATH Also check that you have the following in your ~/.bash_profile if using bash or ~/.zshenv if using zsh export PATH=”$HOME/.rbenv/bin:$PATH” eval “$(rbenv init -)” NOTE: Make sure it’s the last setting in your ~/.bash_profile . I ran into an issue where I installed … Read more