PyCharm无法使用peewee连接到MySQLDatabase

时间:2018-02-10 16:11:37

标签: mysql peewee

我的英语不好,但我会尝试解释我的问题。我正在学习peewee,我无法在mysql和pycharm之间建立连接。这是我的代码:

from peewee import *
db = MySQLDatabase("test", host="localhost", port=3306, user="root", passwd="password")
db.connect()

它会引发以下错误:

AttributeError: 'NoneType' object has no attribute 'connect'

1 个答案:

答案 0 :(得分:0)

您需要安装数据库驱动程序:

$ pip install pymysql