2014-10-07 104 views
1

我试过yum install MYSQL-python,pip安装MySQL-python和easy_install MySQL-python。错误在RHEL上安装MySQL-python 6

得到这个错误:error: command 'gcc' failed with exit status 1

Cleaning up... 
Command /usr/local/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-rpOkcR-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/local/bin/pip", line 8, in <module> 
    load_entry_point('pip==1.5.6', 'console_scripts', 'pip')() 
    File "/usr/local/lib/python2.7/site-packages/pip-1.5.6-py2.7.egg/pip/__init__.py", line 185, in main 
    return command.main(cmd_args) 
    File "/usr/local/lib/python2.7/site-packages/pip-1.5.6-py2.7.egg/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) 

百胜安装工作,它说:Package MySQL-python-1.2.3-0.3.c1.1.el6.x86_64 already installed and latest version.

但是当我打开Python和类型:进口MySQLdb的,它说ImportError: No module named mysqldb

偶试过手动安装GCC通过yum安装gcc或yum安装python-devel ...所有都没有工作。

回答

0

设置终端编码UTF-8,运行以下端子:

export LC_ALL=en_US.UTF-8 
export LANG=en_US.UTF-8 
export LANGUAGE=en_US.UTF-8 
+1

这并不提供答案的问题。要批评或要求作者澄清,请在其帖子下方留言。 – 2014-10-07 07:34:26

+1

@GerarddeVisser现在好吗? – avi 2014-10-07 07:37:11