2013-02-04 77 views
0

我試圖站起來,用ipython plugi n表示gedit3運行,但它需要ipython-listener,當我嘗試啓動它,我得到這個:我無法啓動IPython的監聽

Traceback (most recent call last): 
    File "/usr/local/bin/ipython-listener", line 27, in <module> 
    from IPython.frontend.terminal.embed import InteractiveShellEmbed 
ImportError: No module named terminal.embed 

我運行IPython的版本0.10.2和Python版本2.7.2+

我試圖做pip install terminal.embed,但無法找到它:

Downloading/unpacking terminal.embed 
    Could not find any downloads that satisfy the requirement terminal.embed 
No distributions at all found for terminal.embed 
Storing complete log in /home/amanda/.pip/pip.log 

那麼現在怎麼辦?

+0

因爲我最終回到這裏不時,這裏就是我推出'IPython中,listener'在乾淨的終端使用自定義標題/着色:'的gnome-terminal --window-與知名度= light --title = iPython --execute ipython-listener' – Amanda

回答

2

我試圖做pip install terminal.embed,但無法找到它

這不是一個包,這是IPython中的一部分。你的IPython太老了(幾年)。

該插件取決於IPython≥0.11(當前是0.13.1)。嘗試:

pip install --upgrade ipython 
+0

et瞧。謝謝 – Amanda