1)上面的示例运行良好,但没有打开终端窗口。
import os
directory = os.path.join(os.path.join(os.path.expanduser('~')), 'Desktop')
os.chdir(directory+'/aaaa')
command = os.popen('npm install && gulp watch')
print(command.read())
print(command.close())
2)我发现类似的内容,但在macOS上不起作用,我尝试通过终端和其他方式更改cmd,但它不起作用。
import os
command = "cmd"
os.system(command)
我的目标是启动一个发送订单的终端,可以吗?如果是,怎么办?您有什么要遵循的想法吗?