64位和32位切换 并创建虚拟环境

切换:

# 启动python 3 32位版本
py -3.7-32
 
# 启动python 3 64位版本
py -3.7-64
 
# 启动python 2.7 32位版本
py -2.7-32
 
# 启动python 2 64位版本
py -2.7-64
 

pip使用

py -3.6 -m pip list

虚拟环境创建:

  py -3.7-32 -m venv Project//指定版本

原文地址:https://www.cnblogs.com/leoych/p/12703103.html