Python
root_miss
态度决定命运,细节决定成功
展开
-
Python version 2.7 required, which was not found in the registry 报错处理
windows安装MySQLdb是报错 "Python version 2.7 required, which was not found in the registry" 编写一下脚本内容如下运行 import sys from _winreg import * # tweak as necessary version = sys.version[:3] installp...转载 2018-08-31 10:59:52 · 215 阅读 · 0 评论 -
python在windows下连接mysql数据库
一,安装MySQL-python python 连接mysql数据库需要 Python interface to Mysql包,包名为 MySQL-python ,PyPI上现在到了1.2.5版本。MySQL-python在windows下是通过.exe文件的installer安装的, 前提是已经安装的python需要写入注册表,参考这篇文章:windows安装python2.7后的注...原创 2018-08-31 13:53:22 · 617 阅读 · 0 评论 -
Python CMD 中文乱码处理
抬头加 #coding=utf-8 引入 import sys type=sys.getfilesystemencoding() 然后给有中文输出的地方加上 .decode('utf-8').encode(type) 例如: 完成原创 2018-08-30 10:49:30 · 5558 阅读 · 0 评论