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 に答える