Python 官方文档:入门教程 => 点击学习
当前环境: Windwos 10 python 2.7 Mysql 5.5 PyCharm 遇到的问题 ImportError: No module named MySQLdb安装mysqldb, 注意是windows命令符下,不
当前环境:
遇到的问题
pip install Mysqldb
安装MySQLdb时,报错缺少Visual c++ 9.0。解决方法:下载并安装MySQL-python 1.2.5 . https://pypi.python.org/pypi/MySQL-python/1.2.5
注意: 64位系统的,请安装64位的,否则报错
#
# 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 *
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即可。
--结束END--
本文标题: Python: 将TXT文件写入MySQ
本文链接: https://lsjlt.com/news/189144.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0