Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install libxml2 in unix

Tags:

unix

xml

solaris

can anybody tell me how to install libxml2 in Unix? I am using windows for browsing net and Unix for writing my C programs. I also dont know whether it is already installed. Please tell me guys how to install libxml2 and use it for parsing.

like image 890
holbond Avatar asked Dec 21 '22 07:12

holbond


1 Answers

Here's a way to install from source - given by good folks at Cypress project.

https://github.com/projectcypress/cypress/wiki/Cypress-v2.0-Installation-Guide

---- for easy reading: copied from above URL ----


cd /tmp
wget ftp://xmlsoft.org/libxml2/libxml2-2.8.0.tar.gz
tar xzf libxml2-2.8.0.tar.gz
cd libxml2-2.8.0/
./configure
make
sudo make install
cd
like image 134
David Kim Avatar answered Dec 24 '22 01:12

David Kim