gpt4 book ai didi

mysql - 在 Python 3.5 中导入 MySQL 连接器时出错

转载 作者:行者123 更新时间:2023-11-29 04:18:20 25 4
gpt4 key购买 nike

我在执行以下操作时收到 ImportError: No module named 'mysql'...

>>> import mysql.connector

MySQL 已安装并运行在 Python 3.5 上。我想不通。上面的命令在 Python 2.7 中运行良好。

最佳答案

不幸的是,python3.5 没有可用的 mysql-connector| .

因此,您可以使用 pymysql 模块来替代 mysql-connector package

pip install pymysql

import pymysql
Connection = pymysql.connect(host='hostname', user='username', password='password',
db='database',charset='utf8mb4',cursorclass=pymysql.cursors.DictCursor )
ExecuteQuery(Connection)
Connection.close()

关于mysql - 在 Python 3.5 中导入 MySQL 连接器时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33776412/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com