安装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:\pyenv\flask-env\Scripts>pip install C:\pyenv\flask-env\Scripts\MySQL_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:\pyenv\flask-env\Scripts>pip install MySQL_python-1.2.5-cp36-none-win_amd64.whl Processing c:\pyenv\flask-env\scripts\mysql_python-1.2.5-cp36-none-win_amd64.whl Installing collected packages: MySQL-python Successfully installed MySQL-python-1.2.5 (flask-env) C:\pyenv\flask-env\Scripts>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)

猜你喜欢

转载自www.cnblogs.com/kingwangzhen/p/9395837.html