windows下python2、3绿色安装

1、安装python2、python3,记住不要添加到环境变量中。
2、设置环境变量
在用户变量的Path环境变量中添加以下4个变量
D:\programs\python\Python27\Scripts;D:\programs\python\Python27;D:\programs\python\Python36\Scripts;D:\programs\python\Python36;
3、调整
进入Python36 目录内的python.exe 或python3.6.exe 修改成python3.exe 或拷贝一个exe文件修改成python3.exe。
进入Python27 目录内的python.exe 或python2.7.exe 修改成python2.exe 或拷贝一个exe文件修改成python2.exe。
进入D:\programs\python\Python27\Scripts,删除pip.exe,使用python2时用pip2.exe
进入D:\programs\python\Python36\Scripts,删除pip.exe,否则环境变量会重复加载,使用python3时用pip3.exe
4、检测
输入pip2/pip3 -version 出现Fatal error in launcher: Unable to create process using '"'
原因是pip的版本太低了,升级一下就可以了:
D:\programs\python\Python27\Lib\site-packages 下删除pip-9.0.1.dist-info
D:\programs\python\Python36\Lib\site-packages 下删除pip-9.0.1.dist-info
python2 -m pip install -U pip
python3 -m pip install -U pip
5、注意
python2绿色版安装,需要把python27.dll 放到c:\windows\system32下

你可能感兴趣的:(windows下python2、3绿色安装)