ImportError: No module named 'MySQL'

后端 未结 17 1741
轮回少年
轮回少年 2020-12-12 17:40

I have downloaded the Connector/Python for MySQL successfully. I used the following code in Python\'s shell to test my connection:

import mysql.connector

17条回答
  •  无人及你
    2020-12-12 18:25

    I found that @gdxn96 solution worked for me, but with 1 change.

    sudo wget http://cdn.mysql.com//Downloads/Connector-Python/mysql-connector-python-2.1.3.tar.gz
    tar -zxvf mysql-connector-python-2.1.3.tar
    cd mysql-connector-python-2.1.3
    sudo python3 setup.py install
    

提交回复
热议问题