我得到懸而未決進口這些,如何在PyDev(eclipse)中解決這些未解析的導入?
from gi.repository import GLib, GObject, Gio
from gi.repository import Dee
from gi.repository import Unity
我一直在學習寫鏡頭團結(Ubuntu的)。何處/如何獲取這些模塊並將它們鏈接起來?
我得到懸而未決進口這些,如何在PyDev(eclipse)中解決這些未解析的導入?
from gi.repository import GLib, GObject, Gio
from gi.repository import Dee
from gi.repository import Unity
我一直在學習寫鏡頭團結(Ubuntu的)。何處/如何獲取這些模塊並將它們鏈接起來?
那些在你的PYTHONPATH?你有沒有嘗試在強制buildins中添加'gi'?詳細信息請參見:http://pydev.org/manual_101_interpreter.html。
右鍵單擊項目節點並選擇Properties
。選擇PyDev - PYTHONPATH
和External Libraries
選項卡。按Add source folder
並添加包含gi
包裝的目錄。也就是說,如果您有/src/gi/repository
,您應該添加/src
。
位於典型Ubuntu安裝中的'gi'軟件包位於何處? – MestreLion