0

我正在尝试使用gedit3的 ipython 插件启动并运行,但它需要ipython-listener,当我尝试启动它时,我得到了这个:

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

那么现在怎么办?

4

1 回答 1

2

我试着做pip install terminal.embed但找不到

它不是一个包,它是 IPython 的一部分。你的 IPython 太旧了(几年了)。

该插件依赖于 IPython ≥ 0.11(当前为 0.13.1)。尝试:

pip install --upgrade ipython
于 2013-02-05T01:03:00.447 回答