在python2.7中,咱們安裝的是 MySqldb或這 MySQL-python,可以正卻安裝,但在python3中,因爲 其使用的擴展 ConfigParser 已經更名爲 configparser,因此在python3 不能正常按轉了。。python
在 stackoverflow 中的解釋:mysql
In Python 3,
ConfigParser
has been renamed toconfigparser
for PEP 8 compliance. It looks like the package you are installing does not support Python 3.linux
所以能夠安裝 另外一個 升級辦的mysql擴展: mysqlclient
sql
安裝: ubuntu
注意:
在ubuntu等linux中,咱們還要安裝 一個系統的library:
sudo apt-get install libmysqlclient-devpip install mysqlclient