web-dev-qa-db-ja.com

19.10へのアップグレード後のPeewee MySQLの問題

19.10のアップグレード以降、Python= peeweeはMySQLと通信できなくなりました。

raise ImproperlyConfigured('MySQL driver not installed!')
peewee.ImproperlyConfigured: MySQL driver not installed!

ただし、すべての要件がインストールされています:peeweemysqlclientpysocks

またlibmysqlclient-dev, libmysqlclient21

更新:

mysql --version
mysql  Ver 15.1 Distrib 10.3.17-MariaDB, for debian-linux-gnu (x86_64) using readline 5.2

正常に動作しているMariadbを使用します。

mariadb.service - MariaDB 10.3.17 database server
Loaded: loaded (/lib/systemd/system/mariadb.service; enabled; vendor preset: enabled)
Active: active (running) since 

ここで問題は何ですか?

1
Janghou

修正:

pip3 install pymysql

どうやらmysqlclientではもう十分ではないようです。

1
Janghou