ImportError: No module named 'MySQL'

后端 未结 17 1715
轮回少年
轮回少年 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:14

    For 64-bit windows

    install using wheel

    pip install wheel download from http://www.lfd.uci.edu/~gohlke/pythonlibs/#mysql-python
    

    For python 3.x:

    pip install mysqlclient-xxxxxxxxx-win_amd64.whl
    

    For python 2.7:

    pip install mysqlclient-xxxxxxxxx-win_amd64.whl
    

提交回复
热议问题