1.windows安装python和python3
https://www.python.org/ftp/python
2.win+r 进入命令行模式
python2环境:py -2
python3环境:py -3
退出:exit()
3.不同环境安装安装包
python2:py -2 -m pip install xxx
python3: py -3 -m pip install xxx
4.运行脚本
当python脚本需要python2运行时,只需在脚本前加上,然后运行py xxx.py即可。
#! python2
当python脚本需要python3运行时,只需在脚本前加上,,然后运行py xxx.py即可。
#! python3