您的位置:首页 > 运维架构 > Linux

linux下pip安装mysql-python的错误解决方法

2015-08-24 18:39 926 查看
安装命令:

pip install mysql-python

错误提示:

_mysql.c:36:23: error: my_config.h: No such file or directory

_mysql.c:38:19: error: mysql.h: No such file or directory

_mysql.c:39:26: error: mysqld_error.h: No such file or directory

_mysql.c:40:20: error: errmsg.h: No such file or directory

error: command 'gcc' failed with exit status 1

----------------------------------------

Cleaning up...

Command /usr/bin/python -c "import setuptools, tokenize;__file__='/tmp/pip_build_root/mysql-python/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-fSejm9-record/install-record.txt
--single-version-externally-managed --compile failed with error code 1 in /tmp/pip_build_root/mysql-python

Traceback (most recent call last):

File "/usr/bin/pip", line 11, in <module>

sys.exit(main())

File "/usr/lib/python2.6/site-packages/pip/__init__.py", line 185, in main

return command.main(cmd_args)

File "/usr/lib/python2.6/site-packages/pip/basecommand.py", line 161, in main

text = '\n'.join(complete_log)

UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 65: ordinal not in range(128)

解决方法:

先用yum安装myslq-devel,命令为:yum install mysql-devel -y

然后再输入pip install mysql-python即可正常安装
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: