मैं इसी तरह के मुद्दे का सामना कर रहा था। मेरा env विवरण -पायथन 2.7.11pip 9.0.1CentOS रिलीज़ 5.11 (अंतिम)
पायथन दुभाषिया पर त्रुटि -
>>> import mysql.connector
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named mysql.connector
>>>
उपलब्ध मॉड्यूल को खोजने के लिए पाइप का उपयोग करें -
$ 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
mysql-कनेक्टर-पायथन-आरएफ स्थापित करें -
$ pip install mysql-connector-python-rf
सत्यापित करें
$ 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
>>>
धन्यवाद =)
Python3 के लिए और बाद में अगले कमांड का उपयोग करें:$ pip3 mysql-connector-python-rf इंस्टॉल करें