我正在尝试在 Vista 中运行 IPython 笔记本。我相信我使用 easy_install安装了所有必要的依赖项(在此处列出)。IPython 运行良好。但是当我尝试运行 IPython notebook 时,一切都正常启动,但是一旦我尝试做任何事情,内核就会死掉。我收到以下令人困惑的错误:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "C:\Python27\lib\site-packages\ipython-0.11-py2.7.egg\IPython\zmq\__init__.py", line 25, in <module>
minimum_pyzmq_version, pyzmq_version))
ImportError: IPython.zmq requires pyzmq >= 2.1.4, but you have 2.1.11
2.1.11 >= 2.1.4 所以我不确定问题是什么。2.1.11 是 pyzmq 的最新版本(这里是项目页面)。
[更新:谢谢@ThomasK。我已经在运行 IPython 0.12 但我在 IPython 和 pyzmg 上运行了 easy_install --upgrade 并修复了它。]