溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

Python: 將TXT文件寫(xiě)入MySQL

發(fā)布時(shí)間:2020-06-09 20:05:14 來(lái)源:網(wǎng)絡(luò) 閱讀:2573 作者:wyr80 欄目:MySQL數(shù)據(jù)庫(kù)

當(dāng)前環(huán)境:

  • Windwos 10
  • Python 2.7
  • MySQL 5.5
  • PyCharm

遇到的問(wèn)題

  1. ImportError: No module named MySQLdb
    安裝MySQLdb, 注意是windows命令符下,不是python環(huán)境下
    pip install MySQLdb
  2. error: Microsoft Visual C++ 9.0 is required. Get it from http://aka.ms/vcpython27

安裝MySQLdb時(shí),報(bào)錯(cuò)缺少Visual C++ 9.0。解決方法:下載并安裝MySQL-python 1.2.5 . https://pypi.python.org/pypi/MySQL-python/1.2.5

注意: 64位系統(tǒng)的,請(qǐng)安裝64位的,否則報(bào)錯(cuò)

  1. 安裝MySQL-python時(shí)報(bào)錯(cuò):Python version 2.7 required, which was not found in the registry
    原因: 這是在注冊(cè)表不能識(shí)別python2.7,原因windows是64位,安裝的python是32位
    解決方法:
    1.在任意盤(pán)符文件夾新建一個(gè)register.py文件, 將如下代碼拷貝進(jìn)去:
    
    #
    # script to register Python 2.0 or later for use with win32all
    # and other extensions that require Python registry settings
    #
    # written by Joakim Loew for Secret Labs AB / PythonWare
    #
    # source:
    # http://www.pythonware.com/products/works/articles/regpy20.htm
    #
    # modified by Valentine Gogichashvili as described in http://www.mail-archive.com/distutils-sig@python.org/msg10512.html

import sys

from _winreg import *

tweak as necessary

version = sys.version[:3]
installpath = sys.prefix

regpath = "SOFTWARE\Python\Pythoncore\%s\" % (version)
installkey = "InstallPath"
pythonkey = "PythonPath"
pythonpath = "%s;%s\Lib\;%s\DLLs\" % (
installpath, installpath, installpath
)

def RegisterPy():
try:
reg = OpenKey(HKEY_CURRENT_USER, regpath)
except EnvironmentError as e:
try:
reg = CreateKey(HKEY_CURRENT_USER, regpath)
SetValue(reg, installkey, REG_SZ, installpath)
SetValue(reg, pythonkey, REG_SZ, pythonpath)
CloseKey(reg)
except:
print " Unable to register!"
return
print "--- Python", version, "is now registered!"
return
if (QueryValue(reg, installkey) == installpath and
QueryValue(reg, pythonkey) == pythonpath):
CloseKey(reg)
print "=== Python", version, "is already registered!"
return
CloseKey(reg)
print "
Unable to register!"
print "*** You probably have another Python installation!"

if name == "main":
RegisterPy()



2.  定位到該文件所在目錄,運(yùn)行python register.py 。提示 Python 2.7 is now registered! 表示成功。 繼續(xù)執(zhí)行MySQL-python即可。 
向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI