Python: 将TXT文件写入MySQL
admin
2023-05-09 18:01:58
0

当前环境:

  • Windwos 10
  • Python 2.7
  • MySQL 5.5
  • PyCharm

遇到的问题

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

安装MySQLdb时,报错缺少Visual C++ 9.0。解决方法:下载并安装MySQL-python 1.2.5 . https://pypi.python.org/pypi/MySQL-python/1.2.5

注意: 64位系统的,请安装64位的,否则报错

  1. 安装MySQL-python时报错:Python version 2.7 required, which was not found in the registry
    原因: 这是在注册表不能识别python2.7,原因windows是64位,安装的python是32位
    解决方法:
    1.在任意盘符文件夹新建一个register.py文件, 将如下代码拷贝进去:
    
    #
    # 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.  定位到该文件所在目录,运行python register.py 。提示 Python 2.7 is now registered! 表示成功。 继续执行MySQL-python即可。 

相关内容

热门资讯

燃气热水器需要多少升的 一般在选择燃气热水器的时候,按照家庭内部的使用水的人数来决定,一般如果四个人的话,可以选择40到60...
32升燃气热水器安装方法 燃气热水器是现代家庭生活中非常重要的设备,它不仅方便了我们的生活,提高了生活品质,同时也需要我们重视...
燃气热水器12升和13升的区别... 燃气热水器12升和13升的区别大吗:区别不大。12升就是热水器的额定加热能力是每分钟可以提升水温25...
燃气热水器温度升不上去的原因是... 1、燃气的压力不够大,导致水温无法升高。2、热水器内部的电池电量已经不够运转热水器。3、没有做好卫生...
海尔滚筒洗衣机衣服放进后门锁不... 卡锁松懈或老化故障可以找专业的售后将卡锁部分卸下换一个新的就可以正常使用。可以适当的拿出些许衣服以释...
小米、特斯拉、比亚迪相继调价 ...   小米、特斯拉、比亚迪相继调价  【小米、特斯拉、比亚迪相继调价】2026年5月,中国新能源车市上...
雨雨雨雨雨雨!14日至19日河... 晴雨转换!今天起河南雨雨雨雨雨雨本周河南天气呈现先晴后雨的特点,在经历了前半段晴热模式之后,今天我省...
进出口总量全省第6、鲜苹果出口... 2026年一季度,三门峡市外贸经济稳健向好,交出一份亮眼成绩单:全市实现进出口总值57.9亿元,同比...
法国外交部回应特朗普访华 据凤凰卫视报道,美国总统特朗普访问中国,中美关系走向引发欧洲关注。法国外交部发言人5月13日在巴黎接...
特朗普社媒实际发帖人现身:34... 现年34岁的行政助理娜塔莉·哈普是美国总统特朗普的“资深心腹”,目前已成为协助特朗普在社交平台“真实...