python3安装mysqlclient(mysql-python)库

Python3中安装的mysql数据库包变更为mysqlclient
python2中对应的是mysql-python

安装mysqlclient

直接用pip install mysqlclient 会报错
应该下载wheel包进行安装,分为以下两步

1、下载wheel包
https://www.lfd.uci.edu/~gohlke/pythonlibs/#mysql-python
找到mysqlclient 的位置,下载符合你python环境的wheel包,一般选64位的包
python3安装mysqlclient(mysql-python)库_第1张图片
2、安装wheel包

打开Anaconda prompt用pip 进行wheel包的安装,安装需带上wheel包所在的路径地址。
在这里插入图片描述
3、检验是否安装成功
在这里插入图片描述

你可能感兴趣的:(python,数据库,mysql,python)