Mysql
 sql >> Base de données >  >> RDS >> Mysql

Python :ModuleNotFoundError :aucun nom de module "mysql"

Utilisez pip pour rechercher le module disponible

$ pip search mysql-connector | grep --color mysql-connector-python
   

mysql-connector-python-rf (2.2.2)        - MySQL driver written in Python
mysql-connector-python (2.0.4)           - MySQL driver written in Python

Installez le mysql-connector-python-rf

$ pip install mysql-connector-python-rf

Vérifier

$ python
Python 2.7.11 (default, Apr 26 2016, 13:18:56)
[GCC 4.1.2 20080704 (Red Hat 4.1.2-54)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import mysql.connector
>>>

Pour python3 et versions ultérieures, utilisez la commande suivante :$ pip3 install mysql-connector-python-rf