简体   繁体   English

在RHEL 6上安装MySQL-python时出错

[英]error installing MySQL-python on RHEL 6

I have tried yum install MYSQL-python, pip install MySQL-python and easy_install MySQL-python. 我已经尝试了yum安装MYSQL-python,pip安装MySQL-python和easy_install MySQL-python。

Get this error: error: command 'gcc' failed with exit status 1 收到此错误: 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)

yum install worked and it said: Package MySQL-python-1.2.3-0.3.c1.1.el6.x86_64 already installed and latest version. yum install工作正常,它说: Package MySQL-python-1.2.3-0.3.c1.1.el6.x86_64 already installed and latest version.

But when i open python and type : import MySQLdb it says ImportError: No module named mysqldb 但是,当我打开python并键入:import MySQLdb时,它说ImportError: No module named mysqldb

Even tried manually installing gcc via yum install gcc or yum install python-devel...all didnt work. 甚至尝试通过yum install gcc或yum install python-devel手动安装gcc ...都没有用。

Set your terminal encoding to UTF-8 , run following in terminal: 将终端编码设置为UTF-8 ,在终端中运行以下命令:

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

found the answer: yum install mysql-devel.x86_64 找到了答案: yum install mysql-devel.x86_64

Seems like yum install mysql-devel didnt do it. 好像yum install mysql-devel没做。 Had to be more specific.. 必须更具体..

Install mysql-python return error in CentOs 在CentO中安装mysql-python返回错误

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM