ruby
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
yaml lib installation
download by wget
$ wget http://pyyaml.org/download/libyaml/yaml-0.1.6.tar.gz
$ tar xf yaml-0.1.6.tar.gz && cd yaml-0.1.6
compile and installation
ruby installation
download by wget
compile and install
libs installation
openssl
$ ./configure --prefix=/usr/local
$ make && sudo make install
$ wget http://cache.ruby-lang.org/pub/ruby/2.1/ruby-2.1.2.tar.gz
$ tar xf ruby-2.1.2.tar.gz && cd ruby-2.1.2
$ ./configure --prefix=/usr/local/ruby --enable-shared --with-opt-dir=/usr/local/lib
$ make && sudo make install
$ cd ext/openssl
$ ruby extconf.rb
$ make && sudo make install