windows 安装基于 python 2 的mysql client

直接 pycharm 安装 MysqLdb  安装失败,提示 没有匹配的 tag

 

随后尝试 pip 安装, Windows 中 pip 没添加到环境变量,加上本地程序运行在虚拟环境,故 在 powershell  中 cd 到 python 解释器安装所在目录 ,相对位置   your_projects\venv\Scripts\ 使用命令行   .\python.exe  -m pip install MysqL 

中间提示报错: unkNow encoding                               设置环境变量, set  PYTHONIOENCODING=UTF-8  然后重启 powershell       

 

然后 报错   error: Microsoft Visual C++ 9.0 is required. Get it from http://aka.ms/vcpython27 ,

辗转下载 好了 Microsoft Visual C++  for python 又报错:

error: command 'C:\\Users\\Administrator\\AppData\\Local\\Programs\\Common\\Microsoft\\Visual C++ for Python\\9.0\\VC\\Bin\\cl.exe' Failed with exit status 2
----------------------------------------
ERROR: Failed building wheel for MysqL-python

因为python2 已经是弃子了,遂放弃通过 pip 安装 MysqL 

最后直接通过  wheel 安装

 https://www.lfd.uci.edu/~gohlke/pythonlibs/#MysqL-python

 

相关文章

Windows2012R2备用域控搭建 前置操作 域控主域控的主dns:自...
主域控角色迁移和夺取(转载) 转载自:http://yupeizhi.blo...
Windows2012R2 NTP时间同步 Windows2012R2里没有了internet时...
Windows注册表操作基础代码 Windows下对注册表进行操作使用的...
黑客常用WinAPI函数整理之前的博客写了很多关于Windows编程的...
一个简单的Windows Socket可复用框架说起网络编程,无非是建...