我的英语不好,但我会尝试解释我的问题。我正在学习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'
答案 0 :(得分:0)
您需要安装数据库驱动程序:
$ pip install pymysql