Problem
I need to install wkhtmltopdf on Linux CentOS.
Solution
First of all, we need to download the wkhtmltopdf.
# wget https://wkhtmltopdf.googlecode.com/files/wkhtmltopdf-0.11.0_rc1-static-amd64.tar.bz2
Then we need to extract it
# tar xvjf wkhtmltopdf-0.11.0_rc1-static-amd64.tar.bz2
Move to bin
# mv wkhtmltopdf-amd64 /usr/bin/wkhtmltopdf
Set proper rights
# chmod 777 /usr/bin/wkhtmltopdf
And validate that everything is running properly
$ wkhtmltopdf --version