每次我在python2.7中安装scipy模块时显示错误

时间:2016-04-02 14:19:44

标签: python

我使用的是32位Python。每当我使用pip在Python 2.7中安装Scipy(来自here)模块的scipy-0.17.0-cp27-none-win32.whl时,我都会收到此错误:

enter image description here

from gensim import corpora, models, similarities
corpus = [[(0, 1.0), (1, 1.0), (2, 1.0)],
     [(2, 1.0), (3, 1.0), (4, 1.0), (5, 1.0), (6, 1.0), (8, 1.0)],
     [(1, 1.0), (3, 1.0), (4, 1.0), (7, 1.0)]]

为什么会失败,我该如何解决?

0 个答案:

没有答案