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)
  • 相关阅读:
    group_concat函数与find_in_set()函数相结合
    PHP获取指定时间的上个月
    CI框架 数据库批量插入 insert_batch()
    PHP可变长函数方法介绍
    js闭包理解
    Android百度地图开发(一)之初体验
    Activity的四种启动模式和onNewIntent()
    再探Java基础——throw与throws
    Failed to load JavaHL Library解决方法
    Eclipse中添加Android系统jar包
  • 原文地址:https://www.cnblogs.com/kingwangzhen/p/9395837.html
Copyright © 2011-2022 走看看