0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

バージョンは0.12.3のものを利用
https://github.com/wkhtmltopdf/wkhtmltopdf/releases/0.12.3/

以下のコマンドでインストールすることができる。

$echo $PATH #環境変数に/usr/local/binが含まれているかどうかを確認
$cd /usr/local/bin
$wget https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.3/wkhtmltox-0.12.3_linux-generic-amd64.tar.xz 
$xz -dv wkhtmltox-0.12.3_linux-generic-amd64.tar.xz
$tar -xf wkhtmltox-0.12.3_linux-generic-amd64.tar
$ln -s wkhtmltox/bin/wkhtmltopdf wkhtmltopdf

ただし、permission deniedが出てくる場合は、初めに'sudo'をつけてもう一度実行

$sudo wget https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.3/wkhtmltox-0.12.3_linux-generic-amd64.tar.xz 
$sudo xz -dv wkhtmltox-0.12.3_linux-generic-amd64.tar.xz
$sudo tar -xf wkhtmltox-0.12.3_linux-generic-amd64.tar
$sudo ln -s wkhtmltox/bin/wkhtmltopdf wkhtmltopdf

最後にバージョンを出力して、成功すればインストール完了

$wkhtmltopdf --version
wkhtmltopdf 0.12.3 (with patched qt)

参考文献
https://document.intra-mart.jp/library/forma/public/forma_setup_guide/texts/install/linux/pdf.html

Windowsでのwkhtmltopdfのインストール方法はこの方の記事が詳しいです。
https://qiita.com/danishi/items/e9e0d5c1a8dae1f99b40

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?