Last active
September 18, 2024 00:16
-
-
Save yajra/80ae402e2084191cd1f6e17fa581320e to your computer and use it in GitHub Desktop.
Install wkhtmltopdf 0.12.4 (with patched qt)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/wkhtmlto* /usr/bin/ | |
ln -nfs /usr/bin/wkhtmltopdf /usr/local/bin/wkhtmltopdf |
Thanks to @wni5378 I adapt its post to debian buster 10 and it worked :
apt-get install -y wget xfonts-75dpi
(note : I didn't need more packages, but I had already a lot of packages installed)
wget https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.5/wkhtmltox_0.12.5-1.buster_amd64.deb
dpkg -i wkhtmltox_0.12.5-1.buster_amd64.deb
cp /usr/local/bin/wkhtmltopdf /usr/bin/
cp /usr/local/bin/wkhtmltoimage /usr/bin/
how i can get 0.12.6 with patched qt in my docker
Thank you :)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks a ton!!!!