python - MySQLClient 安装错误 : "raise Exception("Wrong MySQL configuration: maybe https://bugs. mysql.com/bug.php?id"

标签 python mysql mysql-python

我正在尝试将 mysqlclient 安装到我的 Python 3.6。最初我要安装的是 MySQLdb,但是它说 MySQLdb 不能与 Python 3 一起使用(仍然?)。所以我切换到mysqlclient。

pip3 install mysqlclient

但是,它给出了这个错误:

    Collecting mysqlclient
  Using cached https://files.pythonhosted.org/packages/ec/fd/83329b9d3e14f7344d1cb31f128e6dbba70c5975c9e57896815dbb1988ad/mysqlclient-1.3.13.tar.gz
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/private/var/folders/h3/sff7td1d6pg5v5qsm5xf31q80000gn/T/pip-install-ki9z7ln9/mysqlclient/setup.py", line 18, in <module>
        metadata, options = get_config()
      File "/private/var/folders/h3/sff7td1d6pg5v5qsm5xf31q80000gn/T/pip-install-ki9z7ln9/mysqlclient/setup_posix.py", line 60, in get_config
        libraries = [dequote(i[2:]) for i in libs if i.startswith('-l')]
      File "/private/var/folders/h3/sff7td1d6pg5v5qsm5xf31q80000gn/T/pip-install-ki9z7ln9/mysqlclient/setup_posix.py", line 60, in <listcomp>
        libraries = [dequote(i[2:]) for i in libs if i.startswith('-l')]
      File "/private/var/folders/h3/sff7td1d6pg5v5qsm5xf31q80000gn/T/pip-install-ki9z7ln9/mysqlclient/setup_posix.py", line 13, in dequote
        raise Exception("Wrong MySQL configuration: maybe https://bugs.mysql.com/bug.php?id=86971 ?")
    Exception: Wrong MySQL configuration: maybe https://bugs.mysql.com/bug.php?id=86971 ?

我能知道我应该怎么做才能解决这个问题吗?

最佳答案

这是自 2017 年 11 月以来的一个错误。 我有同样的错误,这就是帮助:

  1. 对 mysqlclient-python 或 mysql-connector-c 或 libmysqlclient 中的 mysql_config 文件进行更改(取决于您使用的是什么)

    改变

    # on macOS, on or about line 112:
    # Create options
    libs="-L$pkglibdir"
    libs="$libs -l "

到:

    # Create options
    libs="-L$pkglibdir"
    libs="$libs -lmysqlclient -lssl -lcrypto"
  1. .bash_profile 末尾添加以下内容 how to do that :
   export PATH="/usr/local/opt/openssl/bin:$PATH"
   export LDFLAGS="-L/usr/local/opt/openssl/lib"
   export CPPFLAGS="-I/usr/local/opt/openssl/include"
  1. 运行 pip install mysqlclient,现在应该可以运行了。

更多信息请查看 this link ,请查看“关于 macOS 上 MySQL Connector/C 的 bug 的注意事项”部分。

关于python - MySQLClient 安装错误 : "raise Exception("Wrong MySQL configuration: maybe https://bugs. mysql.com/bug.php?id",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51578425/

相关文章:

python - 如何使用 Python 2.7 和 MySQL 5.6.11 x86_64 让 MySQLdb 在 Mountain Lion 上运行

python - 如果我的两个表相同,为什么我得到的数据不存在? (Python、MySQL)

python - StopIteration 何时会转换为 RuntimeError?

python pandas 简单数据透视表总和计数

python - pandas 与复杂类型列不兼容的形状

MySQL - 在多个列中查找 10 条记录的 "Max"绝对值?

python - 组合 2 个不同元组的值的最佳方法

php - 如何在codeigniter中通过 session 获取用户名

python - 如何在 MySQL Python 中执行更新插入(更新和插入)查询?

x86-64 - CentOs 5下如何安装python2.6-devel包