我如何安装 wkhtmltopdf 0.12.3?

我如何安装 wkhtmltopdf 0.12.3?

我不知道如何安装最新的稳定版本转PDF。当我下载并解压 tar.xz 时,我得到四个文件夹:

  • 垃圾桶
  • 包括
  • 分享

我应该如何处理这些文件?

答案1

您可以在没有该文件的情况下安装它,只需打开终端并运行:

sudo apt-get install wkhtmltopdf

然后从命令行使用它,如:

wkhtmltopdf example.org
wkhtmltoimage example.org

或者您可以使用窗口管理器将下载的文件复制到 /usr 文件夹或sudo mv * /usr在解压缩 tar.xz 文件的目录中运行。


或者你可以使用以下命令运行你解压的文件:

chmod -R u+x /extracted/path
./extracted/path/bin/wkhtmltopdf <arguments>

干杯。

答案2

二进制文件wkhtmltopdf位于bin/目录中(“bin”代表二进制文件)。因此,要在终端中运行它,cd请使用适当的参数bin/运行./wkhtmltopdf

相关内容