python2.7.9安裝mysql-python模塊
阿新 • • 發佈:2017-10-05
tor python2 https ont 連接 inter 都沒有 use 2.7 error: command ‘gcc‘ failed with exit status 1
我使用的系統版本是: SLES12-sp2
使用python連接Mysql數據庫,需要安裝mysql-python模塊;
1. 首先安裝pip:
從python官方網站下載get-pipe.py,執行這個腳本,就可以自動安裝(或升級)
2.執行命令:
pip install mysql-python
報錯:
_mysql.c:29:20: fatal error: Python.h: No such file or directory
#include "Python.h"
^
compilation terminated.
是因為沒有安裝python-devel這個軟件包;
SUSE ENTERPRISE 12 SP 2 系統自帶python版本是2.7.9, 找到合適的對應版本破費周折,到網上了找了一天,都沒有結果;
最後在這個地址找到了:
https://ftp.internet.de/pub/linux/suse/sdk12sp2/suse/x86_64/
下載:python-devel-2.7.9-24.2.x86_64.rpm
裝上它,然後重新執行pip install mysql-python就OK!
python2.7.9安裝mysql-python模塊