I have followed this is steps : Wkhtmltopdf error ERPNext V7 - #11 by Dadaso_Zanzane
Still I am getting this error
`raise IOError(“wkhtmltopdf exited with non-zero code {0}. error:\n{1}”.format(exit_code, stderr.decode(“utf-8”)))
IOError: wkhtmltopdf exited with non-zero code -6. error:
The switch --no-outline, is not support using unpatched qt, and will be ignored.The switch --print-media-type, is not support using unpatched qt, and will be ignored.QXcbConnection: Could not connect to display
`
please help
Hello,
What is the output of the command below?
$ wkhtmltopdf -V
applepipe:
$ wkhtmltopdf -V
wkhtmltopdf 0.13.0-alpha-7b36694
This worked for me Issue with wkhtmltopdf - #8 by Dadaso_Zanzane
Remove existing installation:
sudo apt-get remove --purge wkhtmltopdf
Download wkhtmltopdf patched with qt using below command
sudo wget -P Downloads http://download.gna.org/wkhtmltopdf/0.12/0.12.1/wkhtmltox-0.12.1_linux-trusty-amd64.deb
Here, replace “trusty” with your OS name and if 64 bit only then keep “amd64” like that , otherwise change it to “i386” and down load the deb file.
After that execute the following commands,
cd ~/Downloads
sudo dpkg -i wkhtmltox-0.12.1_linux-trusty-amd64.deb
Now, check wkhtmltopdf version with below command,
wkhtmltopdf -V
wget http://download.gna.org/wkhtmltopdf/0.12/0.12.2.1/wkhtmltox-0.12.2.1_linux-trusty-amd64.deb
sudo apt-get update
sudo apt-get install wkhtmltox
sudo apt-get -f install
sudo dpkg -i wkhtmltox-0.12.2.1_linux-trusty-amd64.deb
wkhtmltopdf -V
o/p:
wkhtmltopdf 0.12.2.1 (with patched qt)
1 Like
Thanks @kolate_sambhaji its working now.
1 Like