Skip to content

Instantly share code, notes, and snippets.

@leite
Created December 2, 2012 15:39
Show Gist options
  • Save leite/4189368 to your computer and use it in GitHub Desktop.
Save leite/4189368 to your computer and use it in GitHub Desktop.
Install wkhtmltopdf step by step in debian based linux
sudo apt-get install openssl build-essential xorg libssl-dev libxrender-dev libqt4-dev qt4-dev-tools
wget http://wkhtmltopdf.googlecode.com/files/wkhtmltopdf-0.11.0_rc1.tar.bz2
tar xjf wkhtmltopdf-0.11.0_rc1.tar.bz2
cd wkhtmltopdf-0.11.0_rc1
make
sudo make install
@lupeke
Copy link

lupeke commented Jan 10, 2013

oneliner produção

cd /home/ubuntu/temp/; curl -LO http://wkhtmltopdf.googlecode.com/files/wkhtmltopdf-0.9.9-static-i386.tar.bz2; tar -xjvf wkhtmltopdf-0.9.9-static-i386.tar.bz2; sudo cp wkhtmltopdf-i386 /usr/bin/wkhtmltopdf;rm -f wkhtmltopdf-*

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment