直接 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