Python MySQLdb在Linux下的快速安裝

來源:互聯網
上載者:User

在公司開發需要,要在Linux下安裝Python MySQLdb。發現用編譯的方式安裝真的很蛋疼,不過也算見見世面,各種問題......

這裡有兩種方式:

A.快速安裝

B.自己編譯

1.最快速最簡單方法(趕時間的話)

sudo yum install MySQL-python

可能遇到問題:
>>> import MySQLdb
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
  File "MySQLdb/__init__.py", line 22, in ?
    raise ImportError("this is MySQLdb version %s, but _mysql is version %r" %
ImportError: this is MySQLdb version (1, 2, 3, 'final', 0), but _mysql is version (1, 2, 1, 'final', 1)
原因:之前使用編譯的方法進行安裝,下的是1.2.3,但是用yum目前最高1.2.1,衝突
解決方案:刪除已經編譯的檔案
                  rm -rf MySQL-python-1.2.3/
再進行
>>> import MySQLdb
無錯誤,則表示成功了

2.自己編譯安裝(有時間的話。。。囧)

需要:
A.gcc
B.setuptools  
wget -O setuptools-0.6c8.tar.gz  http://pypi.python.org/packages/source/s/setuptools/setuptools-0.6c8.tar.gz解壓執行 sudo easy_install.py [或者 python setup.py build   && sudo python setup.py install]
C.python-dev   在   sudo apt-get install python-dev
否則會報異常:fatal error: Python.h: 沒有那個檔案或目錄

步驟:
A.下載:wget http://sourceforge.net/projects/mysql-python/files/latest/download
B.
$ tar xfz MySQL-python-1.2.3.tar.gz
$ cd MySQL-python-1.2.3
$whereis  mysql_config
mysql_config: /usr/bin/mysql_config
$ vim site.cfg
修改mysql_config為mysql設定檔的路徑 /usr/bin/mysql_config
還要修改
threadsafe = False
$ python setup.py build
$ sudo python setup.py install

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.