Conda IPython3 GTK警告

时间:2018-12-01 10:48:39

标签: python-3.x gtk ipython

自从我每次使用matplotlib.pyplot以来的几天,我收到一些针对未找到模块的警告(“ module_path中的非法迁移”翻译为“ 无法在module_path中找到主题引擎“):

In [3]: import matplotlib.pyplot                                                                               

In [4]: Gtk-Message: 11:03:35.759: Failed to load module "atk-bridge"                                          

(python:22784): Gtk-WARNING **: 11:03:35.762: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.762: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.762: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.762: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.762: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.762: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.762: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.762: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.762: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.762: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.762: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.762: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.762: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.762: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.763: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.763: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.763: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.763: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.763: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.763: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.763: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.763: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.763: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.763: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.763: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.763: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.763: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.763: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.764: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.764: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.764: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.764: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.764: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.764: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.764: Impossibile trovare il motore del tema in module_path: «murrine»,

(python:22784): Gtk-WARNING **: 11:03:35.764: Impossibile trovare il motore del tema in module_path: «murrine»,
Gtk-Message: 11:03:35.765: Failed to load module "canberra-gtk-module"

据我所知,ipython / pyplot在查找模块atk-bidgecanberra-gtk-module时遇到了麻烦,并且在module-path的{​​{1}}中也找不到主题引擎(无论如何就是说,我不太了解。

我正在将Ubuntu 18.04与gnome-shell 3.28.3,conda 4.5.11,python 3.7.1,ipython 7.2.0,matplotlib 3.0.2结合使用。

我在线搜索了一些解决方案,但没有解决我的问题。 例如,我尝试重新安装murrine(建议使用here,尽管是14.04),libatk-adaptorlibcanberra-gtk-modulehere),但最后还是尝试摆脱安装here中所述的libcanberra-gtk3-module错误。每个软件包都已安装,我使用module_path

重新安装了它

注1:我也尝试了其他非常相似的解决方案,但没有结果。
注意2:我有几个sudo apt-get install --reinstall <package>环境,这在所有环境中都会发生。
注意3:使用conda conda不会发生这种情况。

here提供了我最常使用的环境中安装的python软件包的列表(以及我最先发现错误的python软件包)。

有关其他信息,请问我,谢谢!

0 个答案:

没有答案