web-dev-qa-db-ja.com

x-tile / python-gconfは18.10にインストールできませんMATE

18.10 MATE x-tileをインストールしようとしています https://www.giuspen.com/x-tile/ 16.04以降使用していますとか、ぐらい。

インストールはpython-gconfの検索に失敗し、python-gconfのインストールは循環依存と思われるもので失敗します。 18.10のpython-gconfに問題はありますか?交換されましたか?開発者サイトにメモを残しましたが、しばらくの間、x-tileアクティビティがありません。

インストールの試みは次のようになります。一部の出力を<...>にカットしました

 Sudo dpkg -i x-tile_2.5.1-1_all.deb 
 <...>
  x-tile depends on python-gconf; however:
   Package python-gconf is not installed.
<...>
Sudo apt install python-gconf
 The following packages have unmet dependencies:
  python-gconf : Depends: gconf-service
                 Depends: libgconf-2-4 (>= 3.2.5) but it is not going to be installed
 <...>
  gconf-service : Depends: gconf-service-backend (= 3.2.6-4.1ubuntu2) but it is not going to be installed
  <...>
  gconf-service-backend : Depends: gconf-service
                          Depends: libgconf-2-4 (= 3.2.6-4.1ubuntu2) but it is not going to be installed
                          Depends: gconf2-common (= 3.2.6-4.1ubuntu2) but it is not going to be installed
  x-tile : Depends: python-gconf but it is not going to be installed
 E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).

apt --fix-broken installは単にxタイルを削除します。


  apt-cache policy python-gconf apt
  python-gconf:
    Installed: (none)
    Candidate: 2.28.1+dfsg-1.2
    Version table:
       2.28.1+dfsg-1.2 500
          500 http://ca.archive.ubuntu.com/ubuntu cosmic/universe AMD64 Packages
  apt:
    Installed: 1.7.2
    Candidate: 1.7.2
    Version table:
   *** 1.7.2 500
          500 http://ca.archive.ubuntu.com/ubuntu cosmic-updates/main AMD64 Packages
          100 /var/lib/dpkg/status
       1.7.0ubuntu0.1 500
          500 http://security.ubuntu.com/ubuntu cosmic-security/main AMD64 Packages
       1.7.0 500
          500 http://ca.archive.ubuntu.com/ubuntu cosmic/main AMD64 Packages



  And 

   apt-cache policy libgconf-2-4:
   Installed: (none)
   Candidate: 3.2.6-4.1ubuntu2
   Version table:
      3.2.6-4.1ubuntu2 500
         500 http://ca.archive.ubuntu.com/ubuntu cosmic/universe AMD64 Packages
3
Stephen Boston

紛失したパッケージに関するエラーメッセージは、universeポケットを無効にしたという考えを示しました。最初にそれを有効にし、更新をインストールする必要があります。

Sudo add-apt-repository universe
Sudo apt-get dist-upgrade

次に、Sudo apt-get install ./x-tile_2.5.1-1_all.debまたは以下のメソッドでメソッドを続行します。


Ubuntu 18.10(Cosmic Cuttlefish)は、公式のPPAでは(まだ)サポートされていません。しかし、X-Tileは利用可能でした buntu 18.04 LTSの場合前の回答 で確認できるように)。

一時的に、PPAからx-tileパッケージを手動でインストールできます。

cd ~/Downloads
wget https://launchpad.net/~giuspen/+archive/ubuntu/ppa/+files/x-tile_2.5.1-3_all.deb
Sudo apt install -y ./x-tile_2.5.1-3_all.deb

以前と同じように楽しんでください:

x-tile on Ubuntu MATE 18.10

更新:私はgiuspenに電子メールを送り、18.10と次の19.04の公式パッケージを取得します。


今後のUbuntu 19.10(Disco Dingo)の場合、x-tileを手動で取得すると、python-gconfパッケージは引き続きインストールできます。

cd ~/Downloads
wget http://mirrors.kernel.org/ubuntu/pool/universe/g/gnome-python/python-gconf_2.28.1+dfsg-1.2_AMD64.deb
Sudo apt-get install ./python-gconf_2.28.1+dfsg-1.2_AMD64.deb

wget https://launchpad.net/~giuspen/+archive/ubuntu/ppa/+files/x-tile_2.5.1-3_all.deb
Sudo apt install -y ./x-tile_2.5.1-3_all.deb
1
N0rbert

Gconfとpython2について

彼が文字通り探していた答えは彼ではありませんが、 gconf はかなりの間( dconf に置き換えられて)なくなり、x-tileが記述されているpython2は- かなり新鮮でもありませんx-tile のコードを見ると、最新のコミットはほぼ3年前であり、開発者にとっては非常に長い時間です。

じゃあ何?

X-tileのメンテナーに連絡して更新するかどうかを確認するか、Ubuntu Budgieのデフォルト拡張機能である this one などの別のタイリング拡張機能を使用するか、またはMateで動作します(免責事項:私は著者です)。

さらに、エクステンションにはcliオプションの数が増えており、a.o。四分タイリングのショートカットに使用したり、すべてをグリッドに配置するなど.

enter image description here

インストールするには、README here )の指示に従ってください。

1
Jacob Vlijm