Recently, I needed my system Ruby again. This is when I found out it was completely messed. It kept giving me this error when I tried to use RubyGems.
'require': no such file to load -- thread (LoadError)
This was supposed to be impossible since thread is in the core library of Ruby. Then, I tried other things like requiring pp and date. Both gave me the same error.
I attempted to reinstall Ruby.
sudo apt-get purge ruby ruby-dev ruby1.8 ruby1.8-dev rubygems rubygems1.8 sudo apt-get install ruby ruby-dev rubygems
Unfortunately, this didn't help at all. I tried this several times to no avail. I then tried installing RubyGems through the source, but I couldn't even run setup.rb since it requires core libraries.
I decided to look through Synaptic Package Manager for anything that matched Ruby. That's when I realized I hadn't uninstalled all of Ruby. I had missed the Ruby libraries! Duh! I had messed up my Ruby libraries and wasn't reinstalling it.
sudo apt-get purge libruby libruby1.8 sudo apt-get install libruby
This fixed my require problems and all was right again.
I've messed up my default ruby installation too. You've saved my life, thanks!
ReplyDeleteGlad you found it helpful Alipio!
ReplyDeleteYep. I removed everything and did the reinstall thing - and it didn't work. Ah, the libs - yes master. Thanks for that. We're all good again.
ReplyDeleteGreat to hear you're back on track David.
ReplyDelete