After installing MariaDB Connector/Python on Windows 64-bit with Python 3.8.3 I am getting the following error in import mariadb:
ImportError: DLL load failed while importing mariadb: The specified module could not be found.
Apparently this is a known issue. Could you, please, help me to find a workaround until the issue is fixed?
Listing of venv\app_name\Lib\site-packages\mariadb-0.9.58.dist-info produces the following results:
2020-05-25 16:41 4 INSTALLER
2020-05-25 16:41 27,030 LICENSE
2020-05-25 16:41 2,625 METADATA
2020-05-25 16:41 572 RECORD
2020-05-25 16:41 8 top_level.txt
2020-05-25 16:41 105 WHEEL
6 File(s) 30,344 bytes
Apparently it doesn't look like a lot of useful stuff because there are no Python or C/C++ modules. So perhaps the installation with pip3 install --pre mariadb has failed silently (nevertheless it reported success).
I have the following candidate solutions in mind:
- Use MySQL Connector/Python to connect to MariaDB. Is this a viable solution?
- Build MariaDB Connector/Python from sources or otherwise download a pre-built package if it's available. But how to do this?