3

I am using the following commands to install wkhtmltopdf but it's not working and given same notification on browser.

sudo add-apt-repository ppa:ecometrica/servers
sudo apt-get update
sudo apt-get install wkhtmltopdf  
kashish
  • 1,342
Om Prakash Maurya
  • 121
  • 1
  • 1
  • 4

1 Answers1

9

To install wkhtmltopdf in Ubuntu 14.04:

  1. Install xvfb server:

    sudo apt-get install xvfb
    
  2. Download the deb from the wkhtmltopdf download page.

    For Ubuntu 14.04 64-bit:

    wget https://downloads.wkhtmltopdf.org/0.12/0.12.5/wkhtmltox_0.12.5-1.trusty_amd64.deb
    
  3. Install wkhtmltopdf:

    sudo dpkg -i wkhtmltox_0.12.5-1.trusty_amd64.deb
    
  4. Install dependencies (if needed):

    sudo apt-get -f install
    
xiota
  • 5,038
Om Prakash Maurya
  • 121
  • 1
  • 1
  • 4