我的情况是安装了 Aptana eclipse 插件并且工作正常。
如果我from gi.repository import Gtk
习惯的代码完成import gtk
功能消失了。任何解决方案还是只是一个错误?
我的临时解决方案是import gtk\ngtk.
在剪贴板管理器中保留一个,并在我需要提示时将其放入。
就在这里!您应该将 gi 添加到强制内置命令中,您将获得代码完成:
Go to the Window->Preferences, PyDev->Interpreter python section and add gi to the "Forced builtin" tab for each interpreter you would like to use Gtk3.
More about this: http://pydev.org/manual_101_interpreter.html
from gi.repository import Gtk
不一样
import gtk
随着声明“
from gi.repository import Gtk
您正在导入 Gtk 3. 使用
import gtk
您正在导入 Gtk 2。
我会说你的代码完成不知道 Gtk 3。
也许有用:
Gtk 3 教程http://readthedocs.org/docs/python-gtk-3-tutorial/en/latest/index.html