I am using Ubuntu13.04
. I have installed Ruby2.0
using RVM
. But now looking for any guideline to install nokogiri
and selenium-webdriver
. But not found any concrete step by step instructions to install the same using RVM
. can anyone out there help me.
I have installed Ruby using the link
as follows:
sudo apt-get -y install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 libxml2-dev \ libxslt-dev autoconf libc6-dev ncurses-dev automake libtool bison
\curl -L https://get.rvm.io | bash -s stable --rails --autolibs=enabled
echo '[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function' >> ~/.bash_profile
source ~/.bash_profile
rvm install 2.0.0-p0
rvm use --default 2.0.0-p0
ruby -v
gem install rails --pre
When I used below got error:
kirti@kirti-Aspire-5733Z:~$ sudo apt-get install libxml2 libxml2-dev libxslt libxslt-dev
[sudo] password for kirti:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Note, selecting 'libxslt1-dev' instead of 'libxslt-dev'
E: Unable to locate package libxslt
kirti@kirti-Aspire-5733Z:~$
Thanks