Termux - Android(pip install --only-binay :all: mysqlclient --user)

问题描述 投票:0回答:2
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?

python android mysql django termux
2个回答
0
投票

包名是

mysql
不是
mysqlclient

pip install mysql

并且不要安装来自 PyPI 的预编译二进制文件。这很可能在 termux 中不起作用。


0
投票

我正在寻找相同的解决方案,我遇到了这个:How to install MySQL Connector Package in Python?

pip3 install mysql-connector
© www.soinside.com 2019 - 2024. All rights reserved.