我安装了 Pydev 2.7、Python 3.2 和 IPython 0.13。但是,当我在 Eclipse 中运行交互式控制台时,它说
PyDev console: using IPython 0.11
我无法想象 IPython 0.11 应该来自哪里。我该如何检查?
运行控制台后, import IPython; IPython.__version__
也给了我正确的 0.13 版本。
现在是控制台中的 IPython 0.13 还是有问题?
我觉得你很好。我试过了
IPython.__version__
并在 PyDev 控制台中获得 0.13:
import sys; print('%s %s' % (sys.executable or sys.platform, sys.version))
C:\Python27\python.exe 2.7.3 (default, Apr 10 2012, 23:31:26) [MSC v.1500 32 bit (Intel)]
PyDev console: using IPython 0.11
import IPython
IPython.__version__
Out[1]: '0.13.1'