How to install wkhtmktopdf on a Linux 32bit Operating System?
|
|
|
|
|
Question: How to install wkhtmktopdf on a Linux 32bit Operating System?
Answer:
-
Open a new Terminal Window
-
Download the wkhtmltopdf library
http://wkhtmltopdf.googlecode.com/files/libwkhtmltox-0.11.0_rc1-i386.tar.bz2
-
Extract the library
tar xvjf libwkhtmltox-0.11.0_rc1-i386.tar.bz2
-
Move the library to the /usr/local/bin/wkhtmltopdf directory
mv wkhtmltopdf-i386 /usr/local/bin/wkhtmltopdf
-
Make the /usr/local/bin/wkhtmltopdf executable
chmod +x /usr/local/bin/wkhtmltopdf
-
Try it
wkhtmltopdf http://google.co.za /home/roland/Desktop/google.pdf
|