• python安装.whl文件失败


    • 安装wheel  pip install wheel
    • 以安装scipy为例,在官网下载安装包https://pypi.python.org/pypi/scipy
    • 一定要注意这里的版本一定要和你的python所支持的版本一直否则会出现
    C:Usersxiaoqiu>pip install F:rowserGooglescipy-1.0.0-cp36-cp36m-manylinux1_x86_64.whl
    scipy-1.0.0-cp36-cp36m-manylinux1_x86_64.whl is not a supported wheel on this platform.

    • 进入python目录,查看支持的版本
    Python 3.6.3 (v3.6.3:2c5fed8, Oct  3 2017, 18:11:49) [MSC v.1900 64 bit (AMD64)] on win32
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import pip
    >>> print(pip.pep425tags.get_supported())
    [('cp36', 'cp36m', 'win_amd64'), ('cp36', 'none', 'win_amd64'), ('py3', 'none', 'win_amd64'), ('cp36', 'none', 'any'), ('cp3', 'none', 'any'), ('py36', 'none', 'any'), ('py3', 'none', 'any'), ('py35', 'none', 'any'), ('py34', 'none', 'any'), ('py33', 'none', 'any'), ('py32', 'none', 'any'), ('py31', 'none', 'any'), ('py30', 'none', 'any')]
    >>> exit()

    • 下载对应的版本
    • 安装.whl文件
    C:Usersxiaoqiu>pip install F:rowserGooglescipy-1.0.0-cp36-none-win_amd64.whl


    欢迎关注我的公众号:小秋的博客 CSDN博客:https://blog.csdn.net/xiaoqiu_cr github:https://github.com/crr121 联系邮箱:rongchen633@gmail.com 有什么问题可以给我留言噢~
  • 相关阅读:
    【小米OJ-找多少个等差数列】动态规划
    【小米OJ-找出可能的合的组合】深搜(dfs)
    【小米OJ-移除k位得到最小值】栈的应用
    【小米OJ-小米兔的轨迹】顺时针蛇形矩形
    Qt常用类
    file_operations
    Proc文件系统
    memset
    Source Insight快捷键大全
    内核内存分配
  • 原文地址:https://www.cnblogs.com/flyingcr/p/10327020.html
Copyright © 2020-2023  润新知