wx.PrintDialog 中缺少打印机
我们终于将使用 Xubuntu 9.04 的旧工作站迁移到 Xubuntu 10.04,在此过程中我们正在测试我们的内部 wxPython 在新系统上的应用。 一切正常,除了 wx.PrintDialog
的弹出窗口显示“否” 打印机可用,只有一个“默认打印机”且空 “设备”和“状态”。即使使用 wxPython 的 PrintDialog 也会发生这种情况 演示。我可以检查什么?
(Xubuntu 10.04,wxPython 2.8.10.1)
We are finally migrating our old workstations with Xubuntu 9.04 to
Xubuntu 10.04, and in the process we're testing our in-house wxPython
application on the new systems.
Everything works nicely, except that wx.PrintDialog
's popup shows NO
printers available, there's only a "Default printer" with empty
"Device" and "Status". This happens even with wxPython's PrintDialog
demo. What could I check out?
(Xubuntu 10.04, wxPython 2.8.10.1)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来您必须安装 libgnomeprintui:
apt-get install libgnomeprintui2.2-0
(找到 此处)
It looks like you have to install libgnomeprintui:
apt-get install libgnomeprintui2.2-0
(found here)