3

I've just had a nightmare getting rbenv to load Ruby v 2.3.0. I've finally got it to show after adding 'eval "$(rbenv init -)"'to my .zshrc file. However, now I'm getting the note above at the top of my terminal when I relaunch. Any ideas why this would show and how I can amend?

Mike.Whitehead
  • 798
  • 18
  • 52

1 Answers1

1

Stumbled upon this while debugging an issue, just clarifying for future interweb travelers.

Edit your ~/.zshrc file and add this:

eval "$(rbenv init -)"

Restart your terminal.


Here are some helpful links

https://stackoverflow.com/a/25452411/6114891

https://stackoverflow.com/a/42002830/6114891

Jonathan
  • 648
  • 4
  • 13
  • 34