LoginSignup
0

More than 1 year has passed since last update.

mysqlclientインストール時のエラー

Last updated at Posted at 2021-11-29

EC2とMySQLを接続させるときに出会ったエラー

pip install mysqlclient
上記をしているのに,runserverすると
django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module.
Did you install mysqlclient?

と怒られる。

解決策

sudo yum install python3-devel mysql-devel
sudo yum install gcc

してから
pip install mysqlclient
するとうまくいった。

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
What you can do with signing up
0