安装mysqlclient失败的解决办法,亲测有效。

pip 安装 mysqlclient 报错 Command errored out with exit status 1

安装mysqlclient报错:
ERROR: Command errored out with exit status 1: ‘d:\cs\csruanjiananzhuang\python\python.exe’ -u -c ‘import sys, setuptools, tokenize; sys.argv[0] = ‘"’"‘C:\Users\at2893\AppData\Local\Temp\pip-install-mevniq0a\mysqlclient\setup.py’"’"’; file=’"’"‘C:\Users\at2893\AppData\Local\Temp\pip-install-mevniq0a\mysqlclient\setup.py’"’"’;f=getattr(tokenize, ‘"’"‘open’"’"’, open)(file);code=f.read().replace(’"’"’\r\n’"’"’, ‘"’"’\n’"’"’);f.close();exec(compile(code, file, ‘"’"‘exec’"’"’))’ install --record ‘C:\Users\at2893\AppData\Local\Temp\pip-record-ow_v2_4a\install-record.txt’ --single-version-externally-managed --compile --install-headers ‘d:\cs\csruanjiananzhuang\python\Include\mysqlclient’ Check the logs for full command output.
安装mysqlclient失败的解决办法,亲测有效。_第1张图片解决方法:
1、命令行查看python版本。
2、网址: https://www.lfd.uci.edu/~gohlke/pythonlibs/#mysqlclient
根据python的版本下载相对应的版本。
我的是32位版本的,python是3.7版本,所以下载:

mysqlclient-1.4.6-cp37-cp37m-win32.whl
cp37:python3.7   win32 ---32

安装mysqlclient失败的解决办法,亲测有效。_第2张图片3、下载之后放在文件夹下面, 在该目录下,按shift+右键,启动shell命令行,输入命令:

pip install mysqlclient-1.4.6-cp37-cp37m-win32.whl    

即可下载安装mysqlclient成功。
安装mysqlclient失败的解决办法,亲测有效。_第3张图片注意:如果是虚拟环境,用pycharm打开文件后在下面的python命令窗口输入

pip install mysqlclient

安装mysqlclient失败的解决办法,亲测有效。_第4张图片

你可能感兴趣的:(安装mysqlclient失败的解决办法,亲测有效。)