无法导入sklearn和scipy。 Windows 7的

时间:2016-07-28 22:09:19

标签: python windows numpy scipy scikit-learn

我正在尝试在Windows 7上设置所有这些。这是我尝试导入sklearn或scipy时出现的错误。我使用whl文件安装了sklearn和scipy。我不记得我曾经安装numpy但我可以毫不费力地导入numpy。

The error

1 个答案:

答案 0 :(得分:0)

在我的案例I couldn't install scipy using pip install scipy中,我终于通过使用来自here的Scipy并按如下方式安装它来安装它:

pip3 install scipy-0.19.0rc2-cp36-cp36m-win_amd64.whl

当我最终安装scipy时,我的numpy停止工作并开始发出错误。所以我决定从here安装numpy:

pip3 install numpy-1.12.0+mkl-cp36-cp36m-win_amd64.whl

确保为您的体系结构和Python版本安装正确的numpy。

我希望能帮到你,欢呼。