如何在Python中打开终端窗口并发送命令?

时间:2019-03-14 08:04:01

标签: python python-3.x os.system

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)

我的目标是启动一个发送订单的终端,可以吗?如果是,怎么办?您有什么要遵循的想法吗?

0 个答案:

没有答案