美文网首页
.bat启动多python环境(CONDA)下的.py文件

.bat启动多python环境(CONDA)下的.py文件

作者: 小小杨树 | 来源:发表于2021-09-22 11:00 被阅读0次
    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 "
    

    相关文章

      网友评论

          本文标题:.bat启动多python环境(CONDA)下的.py文件

          本文链接:https://www.haomeiwen.com/subject/tibwgltx.html