Python 3.x Scipy安装误差

Python 3.x Scipy安装误差,python-3.x,scipy,Python 3.x,Scipy,我首先得到了这个错误: Downloading scipy-0.19.1.tar.gz (14.1MB) 100% |████████████████████████████████| 14.1MB 36kB/s Building wheels for collected packages: scipy Running setup.py bdist_wheel for scipy ... error Failed building wheel for scipy Runnin

我首先得到了这个错误:

Downloading scipy-0.19.1.tar.gz (14.1MB)
    100% |████████████████████████████████| 14.1MB 36kB/s
Building wheels for collected packages: scipy
  Running setup.py bdist_wheel for scipy ... error
  Failed building wheel for scipy
  Running setup.py clean for scipy
  Complete output from command c:\users\appdata\local\programs\python\pytho
n36-32\python.exe -u -c "import setuptools, tokenize;__file__='C:\\Users\\URO~1\
\AppData\\Local\\Temp\\pip-build-kk764kiy\\scipy\\setup.py';f=getattr(tokenize,
'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compi
le(code, __file__, 'exec'))" clean --all:

  `setup.py clean` is not supported, use one of the following instead:

    - `git clean -xdf` (cleans all files)
    - `git clean -Xdf` (cleans all versioned files, doesn't touch
                        files that aren't checked into the git repo)

  Add `--force` to your command to use it anyway if you must (unsupported).


 ----------------------------------------
Failed cleaning build dir for scipy
Failed to build scipy
Installing collected packages: scipy
Running setup.py install for scipy ... error
之后,它打印了一堆红色代码(“在处理上述异常时,发生了另一个异常:”,后面有很多文件路径),我没有将它粘贴到这里,因为有很多这样的代码,可能对解决问题没有用。我有python 3,在cmd中尝试安装scipy时出现了以下错误

然后我试着从下载

但它返回错误:

`C:\Users\Downloads>C:\Users\AppData\Local\Programs\Python\Python36-32\ 脚本\pip安装scipy-0.19.1-cp36-cp36m-win_amd64.whl

scipy-0.19.1-cp36-cp36m-win_amd64.whl不是此平台上的受支撑车轮`

前两个路径是我写的(第一个是下载文件所在的路径,第二个是python脚本文件(这是我在教程中所做的))


有人能帮我解决这个问题吗?

您必须首先从安装numpy-1.13.1+mkl-cp36-cp36m-win\u amd64.whl。这将删除以前安装的任何numpy并安装其新版本

然后,您必须像以前一样安装scipy-0.19.1-cp36-cp36m-win\u amd64.whl


注意,请检查您的python版本,此处的numpy和scipy与python 3.6兼容

scipy版本与Python版本不匹配。在我看来,您正在尝试使用32位python安装64位scipy。请尝试32位scipy版本。