为什么 msql-connector 的导入失败,即使它已成功安装?

Why is import of msql-connector failing even though it was successfully installed?

我正在尝试使用 here 提供的说明安装 python-myconnector

安装成功:

(my_virtual_env)[my.username@my-machine ~]$ pip install mysql-connector
...
Successfully installed mysql-connector

然而,当我尝试使用它时,导入 mysql.connector 模块失败。什么??为什么???

(my_virtual_env)[my.username@my-machine ~]$ python
Python 2.7.12 (default, Sep  1 2016, 22:14:00)


>>> import mysql.connector
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named mysql.connector

Here是安装和使用的完整日志。

pip install mysql-connector-python

这对我有用 python 2.7.12 venv.

你也可以看到关于这个的讨论here