django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module.
Did you install mysqlclient?
$ pip install --only-binary :all: mysqlclient --user
ERROR: Could not find a version that satisfies the requirement mysqlclient (from versions: none)
ERROR: No matching distribution found for mysqlclient
我正在尝试在 Android 中执行一个基于 Python Web 的 Django 项目。
如何解决这个错误?我怎样才能在termux中安装所需的mysqlclient?
包名是
mysql
不是mysqlclient
。
pip install mysql
并且不要安装来自 PyPI 的预编译二进制文件。这很可能在 termux 中不起作用。
我正在寻找相同的解决方案,我遇到了这个:How to install MySQL Connector Package in Python?
pip3 install mysql-connector