import mysql.connector ModuleNotFoundError: No module named 'mysql.connector'; 'mysql' is not a package
pip install mysql-connector-python-rf python version-3.7.2
pip install mysql-connector-python-rf
pip install mysql-connector-python succesfully installed import mysql.connector ModuleNotFoundError: No module named 'mysql.connector'; 'mysql' is not a package whereas when I import mysql gives no error message
mysql-connector-python
or similar packages. Just installpip install mysql-connector
. If you have multiple versions of python install you will have to install usingpython -m pip install mysql-connector
. – CodeIt