Python:对scikit-image模块安装进行故障排除

时间:2014-03-05 02:41:40

标签: python module scipy importerror scikit-image

我一直在使用python但想要扩展它的功能。我已经通过Anaconda安装了SciPy及其相关软件包,按照these instructions创建了py3k环境,我测试的每个模块似乎都运行正常 - 除了我特别想要使用的模块。

当我尝试在frontpage of scikit-image上运行“入门”示例时,我最终得到this error。我尝试单独安装scikit-image(以及它的依赖项),当我执行脚本时没有错误但没有出现图像。

from skimage import data, io, filter

image = data.coins() # or any NumPy array!
edges = filter.sobel(image)
io.imshow(edges)

1 个答案:

答案 0 :(得分:1)

同时拨打io.show以显示显示窗口。否则,使用matplotlib可视化图像。请参阅http://scikit-image.org上的示例库。