python MySQLdb在windows環境下的快速安裝

來源:互聯網
上載者:User

標籤:

python MySQLdb在windows環境下的快速安裝、問題解決方式

使用python訪問mysql,需要一系列安裝

 

linux下MySQLdb安裝見  

Python MySQLdb在Linux下的快速安裝

http://blog.csdn.net/wklken/article/details/7271019

 

-------------------------------------------------------------

以下是windows環境下的:

 

1.      安裝資料庫mysql

:http://www.mysql.com/downloads/

可以順帶裝個圖形工具,我用的是MySQL-Front

 

2.      安裝MySQLdb

 

好了,到了這一步,你有兩個選擇

A.     安裝已編譯好的版本(一分鐘)

B.     從官網下,自己編譯安裝(介個…..半小時到半天不等,取決於你的系統內容以及RP)

 

若是系統32位的,有c++編譯環境的,自認為RP不錯的,可以選擇自己編譯安裝,當然,遇到問題還是難免的,一步步搞還是能搞出來的

若是系統64位的,啥都木有的,建議下編譯版本的,甭折騰

 

2.1安裝已編譯版本:

http://www.codegood.com/downloads

根據自己系統下載,雙擊安裝,搞定

然後import MySQLdb,查看是否成功

 

我的,win7,64位,2.7版本

MySQL-python-1.2.3.win-amd64-py2.7.exe

 

2.2自己編譯安裝

話說搞現成的和自己編譯差距不一一點半點鐘的,特別是64位win7,搞死了

 

2.2.1安裝setuptools

在安裝MySQLdb之前必須安裝setuptools,要不然會出現編譯錯誤

http://pypi.python.org/pypi/setuptools

http://peak.telecommunity.com/dist/ez_setup.py 使用這個安裝(64位系統必須用這個)

 

2.2.2安裝MySQLdb

下載MySQLdb

http://sourceforge.net/projects/mysql-python/

 

解壓後,cmd進入對應檔案夾

如果32位系統且有gcc編譯環境,直接

python setup.py build

 

2.2.3問題匯總

A. 64位系統,無法讀取註冊表的問題

異常資訊如下:

F:\devtools\MySQL-python-1.2.3>pythonsetup.py build

Traceback (most recent call last):

 File "setup.py", line 15, in <module>

   metadata, options = get_config()

 File "F:\devtools\MySQL-python-1.2.3\setup_windows.py", line7, in get_config

   serverKey = _winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE, options[‘ registry_ke

y‘] )

WindowsError: [Error 2] The system cannotfind the file specified

 

解決方案:

其實分析代碼,發現只是尋找mysql的安裝地址而已  修改setup_windows.py如下

註解兩行,加入一行,為第一步mysql的安裝位置

 

   #serverKey = _winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE,options[‘registry_key‘] )

   #mysql_root, dummy = _winreg.QueryValueEx(serverKey,‘Location‘)

   mysql_root = r"F:\devtools\MySQL\MySQL Server 5.5"

 

B.沒有gcc編譯環境

unable to find vcvarsall.bat

解決方案:安裝編譯環境(一個老外的文章)

1)  First ofall download MinGW. Youneed g++compiler and MingW make in setup.

2)  If youinstalled MinGW for example to “C:\MinGW” then add “C:\MinGW\bin”to your PATH in Windows.(安裝路徑加入環境變數)

3)  Now startyour Command Prompt and go the directory where you have your setup.py residing.

4)  Last andmost important step:

setup.py install build --compiler=mingw32

或者在setup.cfg中加入:
[build]
    compiler = mingw32

 

C.gcc: /Zl: No suchfile or directory錯誤

異常資訊如下

F:\devtools\MinGW\bin\gcc.exe -mno-cygwin-mdll -O -Wall -Dversion_info=(1,2,3,‘

final‘,0) -D__version__=1.2.3"-IF:\devtools\MySQL\MySQL Server 5.5\include" -IC

:\Python27\include -IC:\Python27\PC -c_mysql.c -o build\temp.win-amd64-2.7\Rele

ase\_mysql.o /Zl

gcc: error: /Zl: No such file or directory

error: command ‘gcc‘ failed with exitstatus 1

 

參數是vc特有的編譯參數,如果使用mingw的話因為是gcc所以不支援。可以在setup_windows.py中去掉
/Zl  

 

解決方案:

修改setup_windows.py  改為空白的

#extra_compile_args = [ ‘/Zl‘ ]

    extra_compile_args = [ ‘‘ ]

 目前就遇到這幾個問題,望補充

 

3.  增刪改查程式碼範例及結果(just for test)

 

[sql] view plaincopyprint?
  1. CREATE TABLE `user` (  
  2.   `Id` int(11) NOT NULL AUTO_INCREMENT,  
  3.   `name` varchar(255) DEFAULT NULL,  
  4.   `age` varchar(255) DEFAULT NULL,  
  5.   PRIMARY KEY (`Id`)  
  6. ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;  
CREATE TABLE `user` (  `Id` int(11) NOT NULL AUTO_INCREMENT,  `name` varchar(255) DEFAULT NULL,  `age` varchar(255) DEFAULT NULL,  PRIMARY KEY (`Id`)) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;

[python] view plaincopyprint?
  1. #-*- coding:utf-8 -*-   
  2. #dbtest.py   
  3. #just used for a mysql test   
  4. ‘‘‘‘‘ 
  5. Created on 2012-2-12 
  6.  
  7. @author: ken 
  8. ‘‘‘  
  9. #mysqldb       
  10. import time, MySQLdb, sys    
  11.          
  12. #connect    
  13. conn=MySQLdb.connect(host="localhost",user="root",passwd="test_pwd",db="school",charset="utf8")    
  14. cursor = conn.cursor()      
  15.          
  16. #add   
  17. sql = "insert into user(name,age) values(%s,%s)"     
  18. param = ("tom",str(20))      
  19. n = cursor.execute(sql,param)      
  20. print n      
  21.          
  22. #更新       
  23. sql = "update user set name=%s where Id=9001"     
  24. param = ("ken")      
  25. n = cursor.execute(sql,param)      
  26. print n      
  27.   
  28. #查詢       
  29. n = cursor.execute("select * from user")      
  30. for row in cursor.fetchall():      
  31.     for r in row:      
  32.         print r,     
  33. print ""  
  34.   
  35.   
  36. #刪除       
  37. sql = "delete from user where name=%s"     
  38. param =("ted")      
  39. n = cursor.execute(sql,param)      
  40. print n      
  41. cursor.close()      
  42.          
  43. #關閉       
  44. conn.close()  

python MySQLdb在windows環境下的快速安裝

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.