gobject

Python Gobject 损坏,求助?
gobject

Python Gobject 损坏,求助?

我不知道是什么导致它损坏,但是我的 python Gobject 库缺少一些东西...当我尝试运行大多数需要 GTK 的工具(例如 gnome-tweak-tool)时,出现以下错误: 回溯(最近一次调用最后一次):文件“/usr/bin/gnome-tweak-tool”,第 24 行,位于 gi.require_version(“Gtk”,“3.0”)AttributeError:'module' 对象没有属性'require_version' 我尝试重新安装 python-gobject,适用于 python 2 和 3,从源代码安装最新版...

Admin

更新至 14.04 后系统配置打印机损坏
gobject

更新至 14.04 后系统配置打印机损坏

在我升级到 Ubuntu 14.04 之后,gnome 中的系统配置打印机对话框在从命令行调用时遇到问题: sudo system-config-printer Traceback (most recent call last): File "/usr/share/system-config-printer/system-config-printer.py", line 72, in <module> from gi.repository import GObject # for TYPE_STRING and TYPE_PYOBJ...

Admin

我可以用 Gio 更改文件图标吗?
gobject

我可以用 Gio 更改文件图标吗?

可能重复: 我如何更改文件夹图标? 我正在使用 Python。我想使用 Gio 从 Python 应用程序更改文件图标。我发现了很多弃用的文档,但我不知道该怎么做。 我尝试了这个,但什么也没发生: from gi.repository import Gio f = Gio.File.parse_name('/home/my_user/Desktop/test.txt') f.set_attribute_string("metadata::custom_icon", '/usr/shar...

Admin

我无法配置 rhythmbox,因为没有安装 gobject-introspection 1
gobject

我无法配置 rhythmbox,因为没有安装 gobject-introspection 1

之前我曾建议过某人如何将 Rhythmbox 升级到 2.99.1 版本这里。但是他们无法升级,因为没有安装 gobject-introspection-1.0。我帮不了他们。 现在,有了一台全新的电脑,我遇到了和他们一样的问题。以下是结果./configure simon@simon-TS44HR:~/Downloads/rhythmbox-2.99.1$ ./configure checking for a BSD-compatible install... /usr/bin/install -c checking whether build env...

Admin

系统日志非常大,充满了“对象 St.DrawingArea 已被处理”错误
gobject

系统日志非常大,充满了“对象 St.DrawingArea 已被处理”错误

我很快就发现我的根分区(比如说每天,甚至每小时)都满了。看了一下系统日志,它有 18GB 大小。看了一下内部,发现它充满了两个错误,一个与特定的 Gnome 扩展有关(砰!禁用它,并在其 github 页面上写了一条评论),第二个: Object St.DrawingArea (0x55f7cc178c40), has been already disposed — impossible to access it. This might be caused by the object having been destroyed from C code usi...

Admin

PyGObject、venv 和 Ubuntu 20.10:ImportError:libffi.so.7:无法打开共享对象文件:没有此文件或目录
gobject

PyGObject、venv 和 Ubuntu 20.10:ImportError:libffi.so.7:无法打开共享对象文件:没有此文件或目录

从 Ubuntu 20.04 更新到 Ubuntu 20.10 后,我无法在 Python 虚拟环境上运行 PyGObject 应用程序。 我可以按照以下简单步骤重现该问题: sudo apt-get install python3-venv python3 -m venv venv source env/bin/activate pip install PyGObject==3.38.0 python3 hw.py hw.py标准 PyGObject Hello World 在哪里: #!/usr/bin/env python3 import gi g...

Admin

何时创建 *.pyc 文件(与其 deb 包相关)以及如何重新创建它们?
gobject

何时创建 *.pyc 文件(与其 deb 包相关)以及如何重新创建它们?

我有两个 Ubuntu 18.04.1 LTS 系统: 全新安装 Ubuntu 18.04.1 LTS 从 Ubuntu 16.04.5 LTS 升级 笔记:两个系统中的所有内容都已使用 APT 安装(来自德布-packages)。我没有使用pip/ pip3、make install和checkinstall其他类似的实用程序。所以这绝对是主题。它是 Ubuntu,Ubuntu 使用 APT。 第一个系统具有以下pyc文件: /usr/lib/python2.7/dist-packages/gi/overrides/Dee.pyc /us...

Admin

Nautilus:python 扩展包兼容性问题(Ubuntu 14.04)?
gobject

Nautilus:python 扩展包兼容性问题(Ubuntu 14.04)?

我尝试安装几个 python nautilus 扩展(例如 nautilus-columns、nautilus-open-as-root 等),但没有成功。安装顺利,但 nautilus 中没有显示任何内容。 当然,python-nautilus 包已经安装: ii python-nautilus 1.1-8 amd64 Python binding for N...

Admin

GObject (GTK3) TreeView:如何以编程方式激活行?
gobject

GObject (GTK3) TreeView:如何以编程方式激活行?

我有一个可工作的 TreeView,其模型为 ListStore,选择设置为 SINGLE。如何发出信号来激活特定行?我正在使用 PyGI。 (如果这是基础的话很抱歉;它不在 Python-GTK3 教程中,并且周围的大部分文档都是基于 pygtk,而不是 PyGI。) ...

Admin

编译Pyqt4程序
gobject

编译Pyqt4程序

我正在尝试将我编写的程序(使用 Pyqt4)打包成一个适用于 Linux 的可执行文件。我尝试使用 Pyinstaller,但它在导入 Gio(用于设置)时出现问题 from gi.repository import Gio 运行该应用程序将得到: ImportError: cannot import name Gio 然后我尝试使用 bbFreeze。问题是,在编译并运行应用程序后,我收到以下错误消息: TypeError: GObject.__init__() takes exactly 0 arguments (1 given) 对于...

Admin