windows上同时安装多个版本的python

在windows上同时安装多个版本的python

1. 安装

  1. 安装py2.7

    从官网下载安装包,直接进行安装,安装目录为D:\Program Files\python27

  2. 安装py3.7

    从官网下载安装包,直接进行安装,安装目录为D:\Program Files\python37

  3. 安装py3.8

    从官网下载安装包,直接进行安装,安装目录为D:\Program Files\python38

2.配置环境变量

  1. D:\Program Files\Python38\ScriptsD:\Program Files\Python38D:\Program Files\Python37\ScriptsD:\Program Files\Python37D:\Program Files\Python27\ScriptsD:\Program Files\Python27添加到PATH

  2. 我们在cmd中预期的结果是

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    python/pip    --为py38

    python3/pip3 --为py38

    python38/pip8 --为py38


    python37/pip37 --为py37

    python2/pip2 --为py27

    python27/pip27 --为py27

  3. 根据上面的预期,去修改

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    1.修改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

  4. 按照上述第2步骤中的预期去验证即可