使用 Conda 无法 运行 Python 脚本

Failed to run Python script with Conda

我尝试像 this tutorial 中那样安装 menpo。之后我安装了 menpofit、menpo3d 和 menpodetect:

conda install -c menpo menpofit

conda install -c menpo menpo3d

conda install -c menpo menpodetect

接下来我 运行 这个来自 CMD 的 python 脚本(python testPy.py):

import menpo.io as mio
from menpo.visualize import visualize_images

images = list(mio.import_images('A:/img/*.png'))
visualize_images(images)

并得到了这个输出: 我做错了什么,我该如何解决?

看来 visualize_images 是要从 ipython-notebook 开始使用的。在常规 python 脚本中调用它似乎不是作者的本意。

另请参阅文档 Visualizing Objects 部分中的示例:

%matplotlib inline
import menpo.io as mio
from menpo.visualize import visualize_images

# import_images is a generator, so we must exhaust the generator before
# we can visualize the list. This is because the widget allows you to
# jump arbitrarily around the list, which cannot be done with generators.
images = list(mio.import_images('./path/to/images/*.jpg'))
visualize_images(images)