python中的MySQL错误无法连接到mysql服务器

时间:2019-04-10 17:41:30

标签: python mysql connection

你好,我有一个问题:

我的输入:

import mysql.connector
import mysql.connector

mydb = mysql.connector.connect(
    host = 'localhost',
    user = 'root',
    passwd = 'ananth'
)
print(mydb)

这是输出:

mysql.connector.errors.NotSupportedError: Authentication plugin 
'caching_sha2_password' is not supported

2 个答案:

答案 0 :(得分:0)

安装python MySQL驱动程序
official document
Similiar stack question
只要确保根据您的操作系统,使用的MySQL版本和Python版本安装正确的连接器     pip安装mysql-connector-python

答案 1 :(得分:0)

现在可以了,谢谢!

我使用了mysql插件,因此可以正常工作

谢谢!