我之前找到了这个解决方案,但它一直在尝试启动 xterm 而不是默认的(在我的情况下是终结者)。有人可以帮忙吗?
def terminal(self):
if sys.platform.startswith('linux'):
os.system('(cd .;$TERM; )'.format(self.dirname))
elif sys.platform.startswith('win'):
os.system('start /d {0} cmd'.format(os.path.normpath(self.dirname)))