python 安装 MYSQL-python失败

(py3不支持MYSQL-python 安装)

通过 pip install  MySQL-python-1.2.3.win-amd64-py2.7.exe,如果出现下面报错信息:

Could not find a version that satisfies the requirement MySQL-python-1.2.3.win32-py2.7.exe (from versions: )
No matching distribution found for MySQL-python-1.2.3.win32-py2.7.exe

就表明你安装的包出现了问题,这个时候后登陆

https://www.lfd.uci.edu/~gohlke/pythonlibs/

找到 MySQL_python-1.2.5-cp27-none-win32.whl(注意这里面的后缀名是.whl不能是.exe),然后下载后重新安装,

pip install MySQL_python-1.2.5-cp27-none-win32.whl

就成功了。

()

猜你喜欢

转载自blog.csdn.net/qq_37431752/article/details/87965695