我使用的是32位Python。每当我使用pip
在Python 2.7中安装Scipy(来自here)模块的scipy-0.17.0-cp27-none-win32.whl时,我都会收到此错误:
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)]]
为什么会失败,我该如何解决?