Reputation: 282
I have problems for 2 days in installing ODOO version 11 on ubuntu 16.04
, I have tried in several ways to install, but everything was for nothing.
I have a serious problem with wkhtmltopdf
.
I have had several problems with that library
Wkhtmltopdf seems to be broken
After that error I did this ->
sudo apt-get install xvfb libfontconfig wkhtmltopdf
Then wkhtmltopdf http://www.google.com google.pdf
to confirm if there is a problem or not.
in console he threw me next.
Loading page (1/2)
Printing pages (2/2)
Done
I opened the pdf and everything was normal.
But when I return to odoo mail I get the next line.
Will use the Wkhtmltopdf binary at /usr/bin/wkhtmltopdf
If someone has the secret formula to install odoo version 11, I will be very grateful.
Upvotes: 1
Views: 2515
Reputation: 2825
Get the Odoo suggested binary from wkhtmltopdf website:
wget https://downloads.wkhtmltopdf.org/0.12/0.12.5/wkhtmltox_0.12.5-1.xenial_amd64.deb
Install with following command
sudo dpkg -i wkhtmltox_0.12.5-1.xenial_amd64.deb
sudo apt-get install -f
The thing is, apt repository doesn't always contain latest version of a package, that may cause issue with your server. Try to stick with the version suggested by odoo itself, which is 0.12.5-1
for latest odoo versions.
Upvotes: 3