mk-toolブログ

エンジニアと家のことをごちゃごちゃと書いてます

【Python】MySQLdb must be installed on the system

概要

以下のエラーが出たためメモ。

MySQLdb must be installed on the system

解決策

PyMySQLをinstallする。

pip3 install PyMySQL
// もしくは
pip install PyMySQL