issue discription
在一台电脑上同时安装了python2.7和python3.5,怎样在这两个版本中切换调用?
solution to the issue
进入python安装文件夹,将 python.exe 文件分别改名为 python27.exe 和 python35.exe
在终端(我用的是powershell)调用时用下述命令:
python27 filename
或python35 filename
即可在两种中版本中进行切换
2023-01-29 11:20:13
在一台电脑上同时安装了python2.7和python3.5,怎样在这两个版本中切换调用?
进入python安装文件夹,将 python.exe 文件分别改名为 python27.exe 和 python35.exe
在终端(我用的是powershell)调用时用下述命令: python27 filename
或 python35 filename
即可在两种中版本中进行切换