如何从 python 代码创建 gnome-terminal?

如何从 python 代码创建 gnome-terminal?

我使用 ubuntu 14.04,我想从 python 脚本创建 gnome-terminal。我使用了以下代码。

代码 :

!/usr/bin/python

from subprocess import Popen,PIPE 
import os 
import time

os.system('gnome-terminal') 
time.sleep(5)
print "this works"

但是当我执行此代码时,系统显示以下错误,并且系统没有读取其他行(打印“这有效”)

(gnome-terminal:2179): GLib-GIO-CRITICAL **: g_settings_get: the format string may not contain '&' (key 'monospace-font-name' from schema 'org.gnome.desktop.interface'). This call will probably stop working with a future version of glib.

我该如何解决这个问题?

提前感谢

相关内容