I simply want to use the MySQL driver for python:
import mysql.connector
Note that I've tried most of the suggestions on this old post, and they still aren't working after troubleshooting the pip install (by upgrading pip in venv and installing wheel, etc.):
Can not get mysql-connector-python to install in virtualenv
I've tried both:
python3 -m pip install mysql-connector-python
...and...
python3 -m pip install mysql-connector-python-rf
...and while both now show no errors during the pip install process, I still have the error:
Unable to import mysql.connector
How do I determine what's going wrong and how do I fix? I receive no errors until "import mysql.connector", which seems like it should work fine.