Skip to content Skip to main navigation Skip to footer

如何在windows下实现python2和python3两个版本共存?

本文主要介绍了在windows系统下,如何才能实现让python2 和python3 这两个python 版本共同存在于系统开发环境下,通过详细的配置步骤来实现python不同的版本同时存在于windwos系统之下:

一直用的是python2,从python 2.3到python 2.7.6, 出于想了解python3的新特性,又安装了python3.3.3. 用了才发现蛮方便的。python的各个版本是独立共存的,不相互冲突的。下面说下如何操作:

1. 独自安装好python2.7.6 和 python3.3.3
2. 修改注册表: 打开->regedit
HKEY_CLASSES_ROOTPython.Fileshellopencommand的默认值
修改为”C:Python27python.exe” “%1” %*(C:Python27是我的Python2.7安装路径),
同时将C:Python27和C:Python27Scripts添加到环境变量中。

3.在C:Python27中新建一个python33.bat的文件,并运行这个文件

@ echo off
C:Python33python.exe %*
 

效果:
如果我想用python2.7.6的时候就输入 python27,想用python3.3.3的时候,就输入python33

D:Python>python27 2to3Test.py
Hello,World!
D:Python>python33 2to3Test.py
Hello,World!
 

还是挺方便的。


如何在windows下实现python2和python3两个版本共存的用法就是这样,欢迎大家参考。。。。

0 Comments

There are no comments yet

Leave a comment

Your email address will not be published.