zoukankan      html  css  js  c++  java
  • 安装MySQL_Python时出现is not a supported wheel on this platform.

    MySQL-Python 数据库驱动安装 pip install mysql_python失败 不支持windows操作系统 解决: 自行下载安装

    下载网站

    http://www.lfd.uci.edu/~gohlke/pythonlibs/
    • 1

    pip install 安装出错

    通过print(pip.pep425tags.get_supported())查看到MySQL_python-1.2.5-cp27-none-win_amd64.whl文件名格式不被支持 强行给他该个支持的名字再安装

    (flask-env) C:pyenvflask-envScripts>pip install C:pyenvflask-envScriptsMySQL_python-1.2.5-cp27-none-win_amd64.whl
    MySQL_python-1.2.5-cp27-none-win_amd64.whl is not a supported wheel on this platform.
    ----------------------------------------
    
    >>> 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')]
    >>>
    
    ------------------------
    (flask-env) C:pyenvflask-envScripts>pip install MySQL_python-1.2.5-cp36-none-win_amd64.whl
    Processing c:pyenvflask-envscriptsmysql_python-1.2.5-cp36-none-win_amd64.whl
    Installing collected packages: MySQL-python
    Successfully installed MySQL-python-1.2.5
    
    (flask-env) C:pyenvflask-envScripts>pip list
    DEPRECATION: The default format will switch to columns in the future. You can use --format=(legacy|columns) (or define a format=(legacy|columns) in your pip.conf under the [list] section) to disable this warning.
    click (6.7)
    Flask (0.12.2)
    itsdangerous (0.24)
    Jinja2 (2.9.6)
    MarkupSafe (1.0)
    MySQL-python (1.2.5)
    pip (9.0.1)
    setuptools (36.5.0)
    Werkzeug (0.12.2)
    wheel (0.30.0)
  • 相关阅读:
    mvc 在ii7上发布时遇到的问题只解决
    @Html.Raw 显示Html的标签
    补发————grid布局
    补发————DOM与BOM
    web实验博客3.css-position
    web专业课学习及往后方向发展
    bom&dom
    网格代码
    简单用户注册表单
    自我介绍
  • 原文地址:https://www.cnblogs.com/kingwangzhen/p/9395837.html
Copyright © 2011-2022 走看看