滑动墙不起作用

滑动墙不起作用

我使用 ppa:fioan89/slidewall 在 Ubuntu 16.04 上安装了 slidewall。

我还安装了 python-appindicator、python-notify、python-notify2、python-webkit。但 slidewall 不起作用。

以下是我收到的错误:

$ /opt/extras.ubuntu.com/slidewall/bin/slidewall
/opt/extras.ubuntu.com/slidewall/slidewall/__init__.py:23: PyGIWarning: Gtk was imported without specifying a version first. Use gi.require_version('Gtk', '3.0') before import to ensure that the right version gets loaded.
  from gi.repository import Gtk # pylint: disable=E0611
/opt/extras.ubuntu.com/slidewall/slidewall_lib/Builder.py:20: PyGIWarning: AppIndicator3 was imported without specifying a version first. Use gi.require_version('AppIndicator3', '0.1') before import to ensure that the right version gets loaded.
  from gi.repository import AppIndicator3 as appindicator
/opt/extras.ubuntu.com/slidewall/slidewall_engine/NotifyEngine.py:16: PyGIWarning: Notify was imported without specifying a version first. Use gi.require_version('Notify', '0.7') before import to ensure that the right version gets loaded.
  from gi.repository import Notify
Please make sure you have installed python image module

我该如何解决这个问题?

答案1

我遇到了同样的问题,但在安装 python-imaging 后问题得到了解决:sudo apt install python-imaging

相关内容