"Unable to install mysql-python, error: mysql_config not found"
P粉818306280
P粉818306280 2023-08-21 13:30:26
0
2
628
<p><strong>这是我遇到的错误</strong></p> <pre class="brush:php;toolbar:false;">(mysite)zjm1126@zjm1126-G41MT-S2:~/zjm_test/mysite$ pip install mysql-python 正在下载/解压 mysql-python 正在下载 MySQL-python-1.2.3.tar.gz (70Kb): 已下载 70Kb 正在运行 setup.py egg_info 用于包 mysql-python sh: mysql_config: 未找到命令 Traceback (most recent call last): File "<string>", line 14, in <module> File "/home/zjm1126/zjm_test/mysite/build/mysql-python/setup.py", line 15, in <module> metadata, options = get_config() File "setup_posix.py", line 43, in get_config libs = mysql_config("libs_r") File "setup_posix.py", line 24, in mysql_config raise EnvironmentError("%s not found" % (mysql_config.path,)) EnvironmentError: mysql_config 未找到 完整输出如下: sh: mysql_config: 未找到命令 Traceback (most recent call last): File "<string>", line 14, in <module> File "/home/zjm1126/zjm_test/mysite/build/mysql-python/setup.py", line 15, in <module> metadata, options = get_config() File "setup_posix.py", line 43, in get_config libs = mysql_config("libs_r") File "setup_posix.py", line 24, in mysql_config raise EnvironmentError("%s not found" % (mysql_config.path,)) EnvironmentError: mysql_config 未找到 ---------------------------------------- 命令 python setup.py egg_info 执行失败,错误代码为 1 完整日志保存在 /home/zjm1126/.pip/pip.log (mysite)zjm1126@zjm1126-G41MT-S2:~/zjm_test/mysite$ pip install mysql-python 正在下载/解压 mysql-python 正在运行 setup.py egg_info 用于包 mysql-python sh: mysql_config: 未找到命令 Traceback (most recent call last): File "<string>", line 14, in <module> File "/home/zjm1126/zjm_test/mysite/build/mysql-python/setup.py", line 15, in <module> metadata, options = get_config() File "setup_posix.py", line 43, in get_config libs = mysql_config("libs_r") File "setup_posix.py", line 24, in mysql_config raise EnvironmentError("%s not found" % (mysql_config.path,)) EnvironmentError: mysql_config 未找到 完整输出如下: sh: mysql_config: 未找到命令 Traceback (most recent call last): File "<string>", line 14, in <module> File "/home/zjm1126/zjm_test/mysite/build/mysql-python/setup.py", line 15, in <module> metadata, options = get_config() File "setup_posix.py", line 43, in get_config libs = mysql_config("libs_r") File "setup_posix.py", line 24, in mysql_config raise EnvironmentError("%s not found" % (mysql_config.path,)) EnvironmentError: mysql_config 未找到 ---------------------------------------- 命令 python setup.py egg_info 执行失败,错误代码为 1 完整日志保存在 /home/zjm1126/.pip/pip.log</pre> <p>我该怎么解决这个问题?</p>
P粉818306280
P粉818306280

reply all(2)
P粉156415696

In Mac OS, I simply ran the following command in Terminal to fix:

export PATH=$PATH:/usr/local/mysql/bin

This is the quickest workaround I've found - it adds it to the path, but if you plan to install MySQL-python in another environment, I think it's better to add it permanently (i.e. add it to /etc/paths).

(Tested in OSX Mountain Lion)

P粉024986150

It looks like mysql_config is missing on your system, or the installer can't find it. Please make sure mysql_config is indeed installed.

For example, on Debian/Ubuntu, you need to install the following packages:

sudo apt-get install libmysqlclient-dev

Maybe mysql_config is not in your path, this will happen when you compile the mysql suite yourself.

UPDATE: For the latest versions of Debian/Ubuntu (as of 2018), use the following commands:

sudo apt install default-libmysqlclient-dev
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template