如何在django项目中使用mysql数据库

问题描述 投票:0回答:1

我在settings.py中设置数据库连接语句,它返回

no biulding tools and ask to install mysqlclient.
django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module.
Did you install mysqlclient?
python django django-mysql
1个回答
0
投票

你必须安装

mysqlclient
包才能在 Django 项目中使用 MYSQL。

您可以通过以下方式安装软件包:

pip install mysqlclient
© www.soinside.com 2019 - 2024. All rights reserved.