Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$ python -c 'from gi.repository import 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