Answers for "how tto fix error: 'authentication plugin 'caching_sha2_password' is not supported' in python while using sql"

7

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

You have probably installed mysql-connector instead of mysql-connector-python. So you need to install it again for python3:

pip3 install mysql-connector-python
Posted by: Guest on October-05-2020
0

authentication plugin 'caching_sha2_password' is not supported

pip install mysql-connector-python
Posted by: Guest on July-10-2021

Code answers related to "how tto fix error: 'authentication plugin 'caching_sha2_password' is not supported' in python while using sql"

Browse Popular Code Answers by Language