我在我的Ubuntu16.04.6LTS系统上安装了ubuntu-make
。
Ubuntu以前是通过官方PPA使用Ubuntu页面安装的。因此,我有以下几点:
$ umake --version
18.05
$ which umake
/usr/bin/umake
$ dpkg -S /usr/bin/umake
ubuntu-make: /usr/bin/umake
$ apt-cache policy ubuntu-make
ubuntu-make:
Installed: 18.05~xenial1
Candidate: 18.05~xenial1
Version table:
*** 18.05~xenial1 500
500 http://ppa.launchpad.net/ubuntu-desktop/ubuntu-make/ubuntu xenial/main amd64 Packages
500 http://ppa.launchpad.net/ubuntu-desktop/ubuntu-make/ubuntu xenial/main i386 Packages
100 /var/lib/dpkg/status
16.02.1 500
500 http://archive.ubuntu.com/ubuntu xenial/universe amd64 Packages
500 http://archive.ubuntu.com/ubuntu xenial/universe i386 Packages
直到今天,当我试图安装Eclipse并得到错误时,它还在正常工作:
$ umake ide eclipse
Choose installation path: /home/username/.local/share/umake/ide/eclipse
ERROR: Download page changed its syntax or is not parsable
Your currently installed version (18.05) differs from the latest release (20.04)
Many issues are usually fixed in more up to date versions.
To get the latest version you can read the instructions at https://github.com/ubuntu/ubuntu-make
该怎么办呢?
发布于 2020-05-03 01:52:48
错误输出表明,目前安装的18.05版本的Ubuntu已经过时,因此我们需要对其进行升级。
通过访问https://github.com/ubuntu/ubuntu-make,我们可以确定两个可能的解决方案:
就我个人而言,我想避免急于求成,所以我增加了新的PPA系统。结果,安装了Eclipse20.03。
https://askubuntu.com/questions/1234693
复制