首页 > 解决方案 > OSError:无法加载库“gobject-2.0”:错误 0x7e

问题描述

我根据安装 weasyprint(Django 项目)的说明安装了包weasyprint 。我的系统:win 10。我已经安装了gtk3,它存在于我的PATH中 PAYH gtk3

import weasyprint
...
@staff_member_required
def order_admin_pdf(request, order_id):
    # Получаем заказ по ID:
    order = get_object_or_404(Order, id=order_id)
    # Передаем объект в функцию render_to через генерацию шаблона pdf.html HTML в виде строки:
    html = render_to_string('shop/orders/order_admin_pdf.html',
                            {'order': order})
    # Создаем объект овтета с типом содержимого application/pdf и заголовком Content-Disposition:
    response = HttpResponse(content_type='application/pdf')
    response['Content-Disposition'] = 'filename=order_{}.pdf"'.format(order.id)
    # Вызов метода weasyprint для получения PDF документа:
    weasyprint.HTML(string=html).write_pdf(response,
                                           stylesheets=[weasyprint.CSS(
                                               settings.STATIC_ROOT + 'css/pdf.css')])
    return response

OSError:无法加载库“gobject-2.0”:错误 0x7e。此外,ctypes.util.find_library() 无法找到名为“gobject-2.0”的库

标签: pythondjangowindowslibweasyprint

解决方案


我绝望了,决定安装库 gtk2C:\Program Files (x86)\GTK2\lib\并在 PATH 列表中指定第一个。它工作......但我的操作系统 - 赢得 10 x64。为什么库 GTK3 拒绝工作,我不知道。


推荐阅读