start cmd /K "C:&&cd C:\Users\ldl\Desktop&&python test10.py "
start cmd /K "C:&&cd C:\Users\ldl\Desktop&&python test100.py "
start cmd /K "C:&&cd C:\Users\ldl\Desktop&&python test1000.py "
start cmd /K "C:&&cd C:\Users\ldl\Desktop&&python test10000.py "
解析:
start cmd /K "C:&&cd C:\Users\ldl\Desktop&&python test10.py "
start 开始启动
cmd 打开命令行
/K 后面可以加"E:\miniconda\Scripts\activate.bat E:\miniconda\envs\pytorch 你的activate.bat切换环境的bat文件,以及你的虚拟环境的路径
&&cd 切换到路径
C:\Users\kiven\Desktop\test\ 你的代码所在的路径
&&python xxx.py 运行你名为xxx的py文件
例如:
更改后的不同虚拟环境下的Py运行:
start cmd /K "E:\miniconda\Scripts\activate.bat E:\miniconda\envs\pytorch&&cd C:\Users\kiven\Desktop\test\&&python xxx.py "
网友评论