文章内容

2023/11/28 1:24:58,作 者: 黄兵

Exception: Can not find valid pkg-config name.

最近再 Ubuntu 22.04 上安装 mysqlclient,出现了如下错误:

Exception: Can not find valid pkg-config name.

Specify MYSQLCLIENT_CFLAGS and MYSQLCLIENT_LDFLAGS env vars manually

具体错误截图如下:

解决方案:

在 root 账户下,运行如下代码:

apt-get update \
    && apt-get upgrade -y \
    && apt-get install -y gcc default-libmysqlclient-dev pkg-config \
    && rm -rf /var/lib/apt/lists/*

安装完成相关依赖之后即可解决以上问题。


参考资料:

1、Docker Alpine build fails on mysqlclient installation with error: Exception: Can not find valid pkg-config name


其它相关推荐:

1、error: command 'x86_64-linux-gnu-gcc' failed with exit status 1

2、Flask+Gunicorn+Nginx安装

3、Ubuntu 18.04 安装Python虚拟环境

4、Flask Gunicorn 安装时遇到的问题总结

5、[已解决]运行gunicorn失败:[ERROR] Connection in use 127.0.0.1 8080

分享到:

发表评论

评论列表