# gem install mechanize
Building native extensions. This could take a while...
Successfully installed nokogiri-1.2.1
Successfully installed mechanize-0.9.2
2 gems installed
Installing ri documentation for nokogiri-1.2.1...
Installing ri documentation for mechanize-0.9.2...
Installing RDoc documentation for nokogiri-1.2.1...
Installing RDoc documentation for mechanize-0.9.2...



<ul><li>libxml2 が無いといわれる場合、libxml2, libxml2-devel をインストールする。

<pre class="prettyprint">checking for #include <libxml/parser.h>
… no
libxml2 is missing. try ‘port install libxml2’ or ‘yum install libxml2’
(略)

# yum install libxml2 libxml2-devel
</pre></li>

<li>libxslt が無いといわれる場合、libxslt、libxslt-devel をインストールする。

<pre class="prettyprint">checking for #include <libxslt/xslt.h>
… no
libxslt is missing. try ‘port install libxslt’ or ‘yum install libxslt’
(略)

# yum install libxslt libxslt-devel
</pre></li>
</ul>