Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道如何使用 Popen 运行一个 .bat 文件。在这种情况下,我需要首先运行 vcvarsall.bat 并初始化编译器工具,然后在同一环境中运行将实际使用编译器工具的第三方 .bat。这样做的最佳方法是什么?
谢谢!
这应该有效:
subprocess.Popen('"vcvarsall.bat" x86&&"invoke_compiler.bat"', shell=True)