在18.10大副,我试图安装x瓦https://www.giuspen.com/x-tile/,我一直使用从16.04左右。
安装失败,查找python,而python安装失败,看起来是循环依赖。18.10的有问题吗?它被替换了吗?我在开发人员的网站上留下了一张便条,但是有一段时间没有在那里进行x块活动了。
下面是安装尝试的样子。我把一些输出切成了<...>
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发布于 2019-03-02 09:52:23
关于丢失包的错误信息向我指出,您已经禁用了宇宙口袋。您应该首先启用它并安装更新:
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 (宇宙鳕鱼)在官方的PPA中还没有得到支持。但是X-Tile是可用的Ubuntu 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并像以前一样享受它:

更新:我已经通过电子邮件收到官方软件包18.10和即将到来的19.04。
在即将到来的Ubuntu19.10( Dingo)中,如果手动获得x-tile,则仍然可以安装python-gconf:
cd ~/Downloads
wget http://archive.ubuntu.com/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发布于 2019-03-02 06:34:43
https://askubuntu.com/questions/1122388
复制相似问题