Search code examples
linuxubuntuwkhtmltopdfdpkg

How to install package wkhtmltopdf in ubuntu


I've used dpkg to install deb packages, but now you can only get the files without an install file. ie (bin, include, lib, share folders) but no .sh or install file.

How can I install this?

Thanks Download Source: https://wkhtmltopdf.org/downloads.html


Solution

  • Just download the tar file, put it at somewhere ,then create a soft link to the bin file,like this:

    sudo ln -s xxxx/bin/wkhtmltopdf /usr/bin/wkhtmltopdf
    

    That all