在windows7 64位 安装MySQL-python-1.2.5.win32-py2.7.exe

本文涉及的产品
云数据库 RDS MySQL Serverless,0.5-2RCU 50GB
云数据库 RDS MySQL Serverless,价值2615元额度,1个月
简介:

利用python可以操作mysql,故想在windows 下安装MySQL-python。


1,python  需安装32位的。
 软件名,python-2.7.13.msi
 双击可安装
 安装完成后添加python根目录至环境变量,

2,安装MySQL-python-1.2.5.win32-py2.7.exe
安装MySQL-python-1.2.5.win32-py2.7.exe 时会报错。
要解决这个问题,可以使用如下的方法:

在D盘新建register.py的文件,内容如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#   
# 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()

然后运行这个python文件,效果如下:

1
2
3
D:\>python register.py
--- Python 2.7 is now registered!
D:\>

重新安装MySQL-python-1.2.5.win32-py2.7.exe就没有问题了。

4,一些下载链接
python2.7.13    https://www.python.org/downloads/release/python-2713/     要下载32位的
MySQL-python-1.2.5.win32-py2.7.exe  https://pypi.python.org/pypi/MySQL-python/1.2.5          要下载32位的    


我已下载好,包括MySQL-python-1.2.5.win32-py2.7.exe、python-2.7.13.msi和register.py。

下载链接:http://down.51cto.com/data/2278526



      本文转自独弹古调  51CTO博客,原文链接:http://blog.51cto.com/hunkz/1889744,如需转载请自行联系原作者






相关实践学习
基于CentOS快速搭建LAMP环境
本教程介绍如何搭建LAMP环境,其中LAMP分别代表Linux、Apache、MySQL和PHP。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助     相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
相关文章
|
20小时前
|
关系型数据库 MySQL 数据库
mysqlTools 一分钟部署安装本mysql多个版本,解锁繁琐部署过程
mysqlTools 一分钟部署安装本mysql多个版本,解锁繁琐部署过程
15 2
|
2天前
|
关系型数据库 MySQL 数据库
Python Stock安装与使用
Python Stock安装与使用
|
2天前
|
Shell 数据安全/隐私保护 Docker
docker安装anaconda3 python环境
docker安装anaconda3 python环境
10 0
|
2天前
|
关系型数据库 MySQL Linux
本地虚拟机centos7通过docker安装主从mysql5.7.21
本地虚拟机centos7通过docker安装主从mysql5.7.21
10 0
|
2天前
|
Windows
Windows 系统下安装
在Windows上安装Julia,从官网下载安装程序。32位版本兼容32/64位系统,但64位仅用于64位Windows。运行安装向导,简单点击Next,建议选中添加到PATH选项。完成后,Julia将可在终端使用,默认路径如C:\Users\BAIDU\AppData\Local\Programs\Julia 1.7.2。
|
2天前
|
并行计算 Windows
23.10.02更新 Windows下CUDA和CUDNN的安装和配置(图多详细)
23.10.02更新 Windows下CUDA和CUDNN的安装和配置(图多详细)
11 1
|
2天前
|
并行计算 Ubuntu TensorFlow
23.10.02更新 windows系统下的Tensorflow安装(图多详细)
23.10.02更新 windows系统下的Tensorflow安装(图多详细)
11 0
23.10.02更新 windows系统下的Tensorflow安装(图多详细)
|
3天前
|
安全 测试技术 数据库
达梦数据库Windows安装教程:从准备到完成
达梦数据库Windows安装教程:从准备到完成
|
3天前
|
安全 虚拟化 Windows
手把手教你如何在虚拟机上安装Windows 10
手把手教你如何在虚拟机上安装Windows 10
|
3天前
|
关系型数据库 MySQL 数据库
龙蜥操作系统上安装MySQL:步骤详解与常见问题解决
龙蜥操作系统上安装MySQL:步骤详解与常见问题解决