Python 2.7.6 (default, Jun 22 2015, 17:58:13)
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from weasyprint import HTML
>>> HTML('http://weasyprint.org/').write_pdf('/tmp/weasyprint-website.pdf')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib/python2.7/dist-packages/weasyprint/__init__.py", line 94, in __init__
    namespaceHTMLElements=False)
TypeError: parse() got an unexpected keyword argument 'override_encoding'
>>>


我相信我已经安装了所有依赖项。这里发生了什么?

最佳答案

看来您与此https://github.com/Kozea/WeasyPrint/issues/353存在相同的问题。

可能是因为您的html5lib过期。它必须至少为html5lib-1.0b9。如果通过html5lib安装pip,则可能仍然是html5lib-1.0b8。我建议您这样做:

pip install --pre html5lib

10-04 20:44