0

I know there is already a question regarding wkhtmltopdf installation, but I need the specific version 0.12.4 to be installed. Is there a way to do it .

Normal apt-get installation ended up in v0.12.0

Is there any ppa repositories which is maintained for this version. I don't see it in this

Please Help!

Gokul
  • 375

1 Answers1

0

Found an answer with help of wkhtmltopdf authors in github

apt-get update 
apt-get install -y --force-yes xvfb 
wget https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.4/wkhtmltox-0.12.4_linux-generic-amd64.tar.xz 
tar xvf wkhtmltox-0.12.4_linux-generic-amd64.tar.xz 
mv wkhtmltox/bin/wkhtmltopdf /usr/bin 
rm wkhtmltox-0.12.4_linux-generic-amd64.tar.xz  && rm -rf wkhtmltox 

Thanks to ashkulz

Gokul
  • 375