解決centos7 安裝MySQLdb-python 報錯 方案

xikunyun發表於2020-05-30

執行 pip install MySQL-Python 報錯:

Command python setup.py egg_info failed with error code 1 in

繼續試探

yum install mysql-devel
 systemctl restart mariadb

之後再安裝報錯:

Command "/usr/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-GMXMYA/MySQL-python/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('
', '
');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-VMNV_c-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /t
mp/pip-build-GMXMYA/MySQL-python/

繼續找安裝

yum install MySQL-python 
 systemctl restart mariadb

測試是否安裝成功

python 

進入 python之後 執行

>>> import MySQLdb
>>> print dir(MySQLdb)
['BINARY', 'Binary', 'Connect', 'Connection', 'DATE', 'DATETIME', 'DBAPISet', 'DataError', 'DatabaseError', 'Date', 'DateFromTicks', 'Error', 'FIELD_TYPE', 'IntegrityError', 'InterfaceError', 'InternalError', 'MySQLError', 'NULL', 'NUMBER', 'NotSupportedError', 'OperationalError', 'ProgrammingError', 'ROWID', 'STRING', 'TIME', 'TIMESTAMP', 'Time', 'TimeFromTicks', 'Timestamp', 
'TimestampFromTicks', 'Warning', '__all__', '__author__', '__builtins__', '__doc__', '__file__', '__name__', '__package__', '__path__', '__revision__', '__version__', '_mysql', 'apilevel', '
connect', 'connection', 'constants', 'debug', 'escape', 'escape_dict', 'escape_sequence', 'escape_string', 'get_client_info', 'paramstyle', 'release', 'result', 'server_end', 'server_init', 
'string_literal', 'test_DBAPISet_set_equality', 'test_DBAPISet_set_equality_membership', 'test_DBAPISet_set_inequality', 'test_DBAPISet_set_inequality_membership', 'thread_safe', 'threadsafe
ty', 'times', 'version_info']

因為系統用 yum install MySQLdb-python 來替代 pip install MySQLdb-python Author: 



來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69971605/viewspace-2695229/,如需轉載,請註明出處,否則將追究法律責任。

相關文章