Jeg havde samme problem. I stedet for at installere mysql
Jeg installerede en MySQL-forbindelse for at oprette forbindelse til MySQL-databasen:
pip install mysql-connector-python
Sådan ser Python-scriptet ud for at forbinde til MySQL:
import mysql.connector
mydb = mysql.connector.connect(
host="localhost",
user="yourusername",
passwd="yourpassword"
)