图形工具导入导致尝试打开套接字?
graph-tool import causing attempt to open socket?
我是 运行 Debian Jessie amd64 上的图形工具。该服务器没有安装 X,我也不希望安装它。每当我尝试导入 *
(根据快速入门文档)时,都会发生以下情况:
Python 2.7.9 (default, Mar 1 2015, 12:57:24)
[GCC 4.9.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from graph_tool.all import *
Unable to init server: Could not connect: Connection refused
Unable to init server: Could not connect: Connection refused
>>>
在测试脚本上尝试 strace
很麻烦,因为发生上述情况时会加载大量库,但通过花费几个小时拖网输出,我认为它可能是 X或gdk相关。我希望这里有人知道是什么原因造成的,以及除了将 STDERR
重定向到 /dev/null
.
之外,我还能做些什么来防止这些看似美观的警告发生
谢谢。
发生这种情况是因为它试图导入 Gtk,后者试图打开 X11 连接。
我是 运行 Debian Jessie amd64 上的图形工具。该服务器没有安装 X,我也不希望安装它。每当我尝试导入 *
(根据快速入门文档)时,都会发生以下情况:
Python 2.7.9 (default, Mar 1 2015, 12:57:24)
[GCC 4.9.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from graph_tool.all import *
Unable to init server: Could not connect: Connection refused
Unable to init server: Could not connect: Connection refused
>>>
在测试脚本上尝试 strace
很麻烦,因为发生上述情况时会加载大量库,但通过花费几个小时拖网输出,我认为它可能是 X或gdk相关。我希望这里有人知道是什么原因造成的,以及除了将 STDERR
重定向到 /dev/null
.
谢谢。
发生这种情况是因为它试图导入 Gtk,后者试图打开 X11 连接。