作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
$ python -c '从 gi.repository 导入 Gtk'-c:1: PyGIWarning: 导入 Gtk 时未先指定版本。在导入之前使用 gi.require_version('Gtk', '3.0') 以确保加载正确的版本。我该怎么办?
最佳答案
您收到警告是因为您在导入 gtk 时未指定版本。这是因为 gtk 有多个版本,所以你应该声明要使用哪个版本。
为此,您可以打开 python 终端(在命令行中键入 python)并执行以下代码:
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk
关于python - PyGIWarning : Gtk and Rsvg were imported without specifying a version first. 使用 gi.require_version,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63631072/
$ python -c '从 gi.repository 导入 Gtk'-c:1: PyGIWarning: 导入 Gtk 时未先指定版本。在导入之前使用 gi.require_version('Gt
我是一名优秀的程序员,十分优秀!