Python无法识别PyMySQL

时间:2017-11-04 14:40:31

标签: python mysql python-3.x pymysql

我安装了python 3.6.2,Mysql 6.3和pyMySQL 0.7.11 运行以下脚本时

import pymysql
import mysql.connector
class Crud:
def __init__(self):
    self.db = pymysql.connect('localhost', 'dnsmonitor', 'test', 'DNSMON')
    self.cursor = self.db.cursor()

我收到以下错误

File "demo.py", line 1, in <module>
import pymysql

ModuleNotFoundError:没有名为'pymysql'的模块

这个问题的根本原因是什么? 我在Windows 10上运行

1 个答案:

答案 0 :(得分:0)

正如我在问题中发布的那样,我使用的是Python 3.6.2。 现在我降级到Python 3.5.3并解决了这个问题。