Ubuntu 17:无法安装 mysqlclient

Posted

技术标签:

【中文标题】Ubuntu 17:无法安装 mysqlclient【英文标题】:Ubuntu 17: Can't install mysqlclient 【发布时间】:2018-05-02 09:29:31 【问题描述】:

尝试学习 Django 教程,但我无法安装 mysqlclient

教程声称我可以使用以下命令来做到这一点:

pip install mysqlclient

但这会产生这个错误:

Collecting mysqlclient   Using cached mysqlclient-1.3.12.tar.gz
    Complete output from command python setup.py egg_info:
    /bin/sh: 1: mysql_config: not found
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/tmp/pip-build-rrolctwh/mysqlclient/setup.py", line 17, in <module>
        metadata, options = get_config()
      File "/tmp/pip-build-rrolctwh/mysqlclient/setup_posix.py", line 44, in get_config
        libs = mysql_config("libs_r")
      File "/tmp/pip-build-rrolctwh/mysqlclient/setup_posix.py", line 26, in mysql_config
        raise EnvironmentError("%s not found" % (mysql_config.path,))
    OSError: mysql_config not found


----------------------------------------  Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-rrolctwh/mysqlclient/

我安装了最新的 pip 和 virtualenv。

我希望能够安装mysqlclient,以便继续学习本教程。

【问题讨论】:

【参考方案1】:

以下为我解决了它:

您可能需要像这样安装 Python 3 和 MySQL 开发头文件和库:

$ sudo apt-get install python3-dev default-libmysqlclient-dev build-essential # Debian / Ubuntu

% sudo yum install python3-devel mysql-devel # Red Hat / CentOS

那么你现在就可以通过pip安装mysqlclient了:

$ pip install mysqlclient

来源:https://github.com/PyMySQL/mysqlclient#prerequisites

【讨论】:

【参考方案2】:

我在 Centos 6 上也遇到过类似的问题,mysql 迁移到 maria 时出现问题,我有一些冲突,但最后我安装了:

 yum list installed |grep MariaDB
MariaDB-client.x86_64  10.2.7-1.el6     @bull                                   
MariaDB-common.x86_64  10.2.7-1.el6     @bull                                   
MariaDB-compat.x86_64  10.2.7-1.el6     @bull                                   
MariaDB-devel.x86_64   10.2.7-1.el6     @bull                                   
MariaDB-server.x86_64  10.2.7-1.el6     @bull  

问题已经解决了。

【讨论】:

【参考方案3】:

我遇到了同样的问题,但按照Official mysqlclient documentation 中的说明为我解决了问题

但只是为了澄清我是从虚拟环境中运行 python 3.5 在安装了先决条件后,一切正常

【讨论】:

【参考方案4】:

您还应该安装 mysql 和 python 开发头文件和库: https://github.com/PyMySQL/mysqlclient-python#prerequisites

【讨论】:

我使用了该网站上为 python 3 提供的命令,但终端告诉我 python3-dev 已经是最新版本。无论如何,我尝试安装 mysqlclient 并再次遇到相同的错误。

以上是关于Ubuntu 17:无法安装 mysqlclient的主要内容,如果未能解决你的问题,请参考以下文章

Ubuntu22.04 在 VMware 17 无法实现拖放复制操作解决办法

安装系统Ubuntu Server 14.04,16.04和17.10

Android设备监视器无法在Ubuntu 17.10中打开

Vmware 14.0 版本中安装Ubuntu 17.10版本无法调整分辨率的问题

当我在我的本地主机系统上安装 apache2 时,它显示了这个错误(Ubuntu 17.10)

Ubuntu内核升级成功后,无法进入到桌面的解决方法