windows上同时安装多个版本的python
在windows上同时安装多个版本的python
1. 安装
安装py2.7
从官网下载安装包,直接进行安装,安装目录为D:\Program Files\python27
安装py3.7
从官网下载安装包,直接进行安装,安装目录为D:\Program Files\python37
安装py3.8
从官网下载安装包,直接进行安装,安装目录为D:\Program Files\python38
2.配置环境变量
把
D:\Program Files\Python38\Scripts
、D:\Program Files\Python38
、D:\Program Files\Python37\Scripts
、D:\Program Files\Python37
、D:\Program Files\Python27\Scripts
、D:\Program Files\Python27
添加到PATH
中我们在cmd中预期的结果是
1
2
3
4
5
6
7
8
9
10
11
12
13python/pip --为py38
python3/pip3 --为py38
python38/pip8 --为py38
python37/pip37 --为py37
python2/pip2 --为py27
python27/pip27 --为py27根据上面的预期,去修改
1
2
3
4
5
6
7
8
9
10
11
12
13
14
151.修改py38
D:\Program Files\Python38\python.exe 复制 --> python3.exe 和python38.exe
D:\Program Files\Python38\Scripts\pip.exe 复制 --> pip3.exe和pip38.exe
2.修改py37
D:\Program Files\Python37\python.exe 重命名 --》 python37.exe
D:\Program Files\Python37\Scripts\pip.exe 重命名 --> pip37.exe
3.修改py27
D:\Program Files\Python27\python.exe 重命名 --》 python2.exe 并复制 --》 python27.exe
D:\Program Files\Python27\Scripts\pip.exe 重命名 --> pip2.exe 并复制 --》 pip27.exe按照上述第2步骤中的预期去验证即可