美文网首页
RuntimeError: cryptography is re

RuntimeError: cryptography is re

作者: momo1023 | 来源:发表于2020-03-09 14:48 被阅读0次

    使用 Python 库 pymysql 连接数据库:

    import pymysql
    # pymysql.install_as_MySQLdb()
    
    # 连接database
    conn = pymysql.connect(
        host='127.0.0.1',
        user='root',password='password',
        database='database',
        charset='utf8')
    

    此时报错:
    RuntimeError: cryptography is required for sha256_password or caching_sha2_p

    解决方法:
    报错原因:mysql版本身份验证出现问题引起的,安装 cryptography 库,问题解决

    $ pip install cryptography
    

    相关文章

      网友评论

          本文标题:RuntimeError: cryptography is re

          本文链接:https://www.haomeiwen.com/subject/korpdhtx.html