微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

安装scipy版本1.1.0

如何解决安装scipy版本1.1.0

我需要安装scipy版本1.1.0。 运行命令pip install scipy==1.1.0后,出现以下错误

Collecting scipy==1.1.0
  Using cached scipy-1.1.0.tar.gz (15.6 MB)
Using legacy 'setup.py install' for scipy,since package 'wheel' is not installed.
Installing collected packages: scipy
    Running setup.py install for scipy ... error
    ERROR: Command errored out with exit status 1:
     command: 'c:\users\myuser\appdata\local\programs\python\python38\python.exe' -u -c 'import sys,setuptools,tokenize; sys.argv[0] = '"'"'C:\\Users\\myuser\\AppData\\Local\\Temp\\pip-install-n02rqpmt\\scipy\\setup.py'"'"'; __file__='"'"'C:\\Users\\myuser\\AppData\\Local\\Temp\\pip-install-n02rqpmt\\scipy\\setup.py'"'"';f=getattr(tokenize,'"'"'open'"'"',open)(__file__);code=f.read().replace('"'"'\r\n'"'"','"'"'\n'"'"');f.close();exec(compile(code,__file__,'"'"'exec'"'"'))' install --record 'C:\Users\myuser\AppData\Local\Temp\pip-record-qa6zm3ga\install-record.txt' --single-version-externally-managed --compile --install-headers 'c:\users\myuser\appdata\local\programs\python\python38\Include\scipy'
         cwd: C:\Users\myuser\AppData\Local\Temp\pip-install-n02rqpmt\scipy\
    Complete output (147 lines):

Note: if you need reliable uninstall behavior,then install
with pip instead of using `setup.py install`:

      - `pip install .`       (from a git repo or downloaded source
                               release)
      - `pip install scipy`   (last SciPy release on PyPI)

请帮助我

解决方法

如果您使用的是 pip,请确保安装了 python2。或者尝试使用 python3

pip install scipy==1.1.0 for python

pip3 install scipy==1.1.0 for python3

安装成功

pip install scipy==1.1.0
Collecting scipy==1.1.0
  Downloading https://files.pythonhosted.org/packages/2a/f3/de9c1bd16311982711209edaa8c6caa962db30ebb6a8cc6f1dcd2d3ef616/scipy-1.1.0-cp27-cp27mu-manylinux1_x86_64.whl (30.8MB)
    100% |████████████████████████████████| 30.8MB 36kB/s 
Collecting numpy>=1.8.2 (from scipy==1.1.0)
  Downloading https://files.pythonhosted.org/packages/3a/5f/47e578b3ae79e2624e205445ab77a1848acdaa2929a00eeef6b16eaaeb20/numpy-1.16.6-cp27-cp27mu-manylinux1_x86_64.whl (17.0MB)
    100% |████████████████████████████████| 17.0MB 67kB/s 
Installing collected packages: numpy,scipy
Successfully installed numpy-1.16.6 scipy-1.1.0
,

您必须先安装与 scipy 兼容的 Python 版本。 我无法使用 pip 安装 scipy 1.1 版 [我认为 pip 不再支持此版本] 并使用 conda 代替:

/(?:\/\*(?:[^\*]|\**[^\*\/])*\*+\/)|(?:\/\/[\S ]*)/g

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。