终于搞定了Ubuntu Fesity 7.04 Ruby1.8.6下openssl的安装问题

安装要点:
$ sudo apt-get install libssl0.9.8
$ sudo apt-get install libssl-dev
$ sudo apt-get install openssl
$ sudo apt-get install libopenssl-ruby
$ cd ${ruby-1.8.6-src}/ext/openssl
$ ruby extconf.rb 
$ make
$ sudo make install

特别是libssl-dev,里面有一些头文件,编译时需要

现在使用irb测试一下:
irb(main):001:0> require 'openssl'
=> true

爽!

参考:
openssl error - buntu
Problem with openssl with Ruby 1.8.6 on Ubuntu Fesity 7.04

你可能感兴趣的:(.net,xml,ext,ubuntu,Ruby)