-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Brew Upgrade Updates Readline Breaking pry #9
Comments
Reinstalling ruby also gives |
@BenGitsCode do you have a fix for this? |
@payne-chris-r I believe I do. But it may be slightly different for Rebekah's machine. In my case I was getting that same error, and installing the with mine I got that error, blowing up even more, when I tried to run pry, but eventually noticed pry was working in my bash only terminal. Correcting the pathing in my I can take a look at her steup if this is something you're trying to resolve right now. |
Also, this may be a pertinent resource https://github.com/rbenv/ruby-build/wiki |
I take back everything I said. Pry had zero issues all of last night and yesterday. Today it doesn't work. Rbenv. |
There's a discussion about this issue here: deivid-rodriguez/byebug#289 |
We figured it out using this: http://stackoverflow.com/questions/16756287/cannot-execute-rails-console You need to uninstall ruby and reinstall (build) it now with the new version of readline. The process as I remember it was something like: rbenv uninstall 2.3.1
rbenv install 2.3.1 && rbenv global 2.3.1 NOTE: You may also need to do the following: gem install bundler
gem install rubocop
gem install scss_lint |
@tuckyeah is solving this right now and should have a better list shortly for his exact scenario. |
These are the steps I ran in order:
These steps did not however install Pry or Byebug (or a few other things), so I went to the most recent challenge which we happened to be working on (https://github.com/ga-wdi-boston/roman-numerals-challenge) and did bundle install It looks like this challenge included:
So those may need to be installed independently if you don't have a challenge handy to just do a bundle install with. As far as I can tell, everything now seems to be working.... Though I'll update if I run into any further issues. Also thanks to @rhjones for walking me through this too!! |
@ga-wdi-boston/core |
@payne-chris-r I finally fixed this, conclusively, not just the readline hot fix, who's still having the issue. I'll add the fix as an orientation issue and reference it here when I'm at my computer. |
I ended up again fixing this only temporarily, but I completely nuked and paved nvm and rbenv and redid installfest 016 and haven't had that issue. Was this issue addressed in the last update? |
Not sure if this is the best place to put this, but Rebekah and I just found that running
Brew Upgrade
(which she did for Hugo to give her presentation), installed a newer version oflib-readline
(7 instead of 6). Because of this change,pry
now no longer runs.The text was updated successfully, but these errors were encountered: