0

我安装了 Canopy 的学术版本,并在我的桌面上获得了 PyLab、Canopy 快捷方式。当我尝试从桌面上的快捷方式运行 PyLab 时,我得到一个打开的命令窗口:

UserWarning: The top-level `frontend` package has been deprecated. All its subpackages have been moved to the top `IPython` level.
  warn("The top-level `frontend` package has been deprecated. "
Python 2.7.3 | 64-bit | (default, Aug  8 2013, 05:30:12) [MSC v.1500 64 bit (AMD64)]
Type "copyright", "credits" or "license" for more information.

IPython 1.1.0 -- An enhanced Interactive Python.
?         -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help      -> Python's own help system.
object?   -> Details about 'object', use 'object??' for extra details.
[TerminalIPythonApp] WARNING | Eventloop or matplotlib integration failed. Is matplotlib installed?  

奇怪的是,当我从命令行运行 python2.7 时,它会将 matplotlib 列为已安装。当我运行 Canopy 包管理器时,它说安装了 matplotlib 1.3.0。

这里有什么问题?谢谢

4

1 回答 1

1

抱歉,Pylab 快捷方式在 Canopy 1.1.1 中被打破。您可以手动编辑它(在目标路径中将“系统”替换为“用户”),或从“开始”菜单打开“Canopy 命令提示符”,然后键入ipython --pylab=qt

另请注意,Canopy GUI 应用程序本身中的 Python shell 面板默认以 Pylab 模式运行 Ipython QtConsole,这可能是运行 Pylab 的最简单方法,以及链接到该 Pylab 会话的编辑器。

于 2013-10-05T00:59:16.507 回答