How to get past the “(Gem::Exception) SSL is not installed on this system” error when installing Ruby on Rails
- 1 Comment
If you're new here, you may want to start with my most popular posts. Then, subscribe to my RSS feed to stay updated. Thanks for visiting!
Google Query: ERROR: while executing gem … (Gem::Exception) SSL is not installed on this system
I received this error when I tried to install Ruby on Rails on another Ubuntu Gutsy Gibbon (7.10) system the other day. After some Google searching I finally found my answer at Nabble.com.
Basically, you have to install “libopenssl-ruby” by typing the following in at the Terminal:
sudo apt-get install libopenssl-ruby
That’s it! You should be able to install Rails without that ssl error now.
I would also like to thank Reader, leondu, for pointing out that Ruby Gems is now at version 0.9.5. I have updated “How to Install ruby on rails on Ubuntu Gutsy Gibbon” to reflect the changes and the above error.
Happy Coding!
Technorati Tags: Ubuntu, Ruby on Rails, Programming
Related posts:
- How to get past the `require’: no such file to load — mkmf (LoadError) when installing the “mysql” gem
- How to install ruby on rails on Ubuntu Gutsy Gibbon (7.10)
- How to get past the “Could not find rubygems-update (> 0) in any repository” Error
- How to work around the “no address associated with hostname.(SocketError)” when installing Rails
- How to get past the “flashplugin-nonfree is already installed” error on Ubuntu Gutsy Gibbon (7.10)
1 Comments on this post
Trackbacks
-
phantomdata said:
Really, the error message should indicate that. It doesn’t even say “No Ruby bindings” just “it’s not installed”. I went bonkers trying to figure that one out before I realized that there was a Ruby gem.
Also - on a different box I had a custom version of Ruby installed in a different location that was futzing things up (everything from rmagick to psql worked but not openssl). I reinstalled it to the “Standard” location and all was well.
December 11th, 2007 at 4:41 pm


