欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

解决 mysql_config not found 错误

程序员文章站 2022-05-29 09:39:56
...
解决方案
$ vim ~/.bash_profile
# 添加
PATH="/usr/local/mysql/bin:${PATH}"
export PATH
export DYLD_LIBRARY_PATH=/usr/local/mysql/lib/
export VERSIONER_PYTHON_PREFER_64_BIT=no
export VERSIONER_PYTHON_PREFER_32_BIT=yes

$ source ~/.bash_profile

转载于:https://my.oschina.net/michao/blog/745431