天天看點

python3安裝pymysql_pymysql安裝

安裝python3之後 連結資料庫需要安裝pymysql

之後執行解壓縮指令

tar -zxvf PyMySQL3-0.5.tar.gz

進入pymysql 檔案夾内

cd PyMySQL3-0.5

安裝pymysql (一定要用root權限)

sudo python setup.py install

安裝完,成功

下面是測試代碼 (網上有很多)

#!/usr/bin/python

#coding=utf-8

import pymysql

# 打開資料庫連接配接

#db = pymysql.connect("192.168.106.102","root","123456","test" )

config = {

'host':'192.168.106.102',

'port':3306,

'user':'root',

'passwd':'123456',

'db':'test',

'charset':'utf8',

}

# 連接配接資料庫

db = pymysql.connect(**config)

# 使用cursor()方法擷取操作遊标

cursor = db.cursor()

# 使用execute方法執行SQL語句

cursor.execute("SELECT VERSION()")

# 使用 fetchone() 方法擷取一條資料

data = cursor.fetchone()

print ("Database version : %s " % data)

# 關閉資料庫連接配接

db.close()

執行之後 顯示下圖 安裝成功

python3安裝pymysql_pymysql安裝