我正在尝试更新到 Inkscape 0.92。我在华硕 c201 的 crouton 上运行 Ubuntu 14.04 Trusty。我使用以下命令添加了 PPA
sudo add-apt-repository ppa:inkscape.dev/stable
sudo apt-get update
更新完成后,我检查我的 Inkscape 版本,仍然为 0.48。
有什么建议么?
更新:尝试了sudo apt-get upgrade
。结果相同,见下文
~$ sudo add-apt-repository ppa:inkscape.dev/stable
The Inkscape Stable PPA is intended to provide the current supported >release of Inkscape.
More info: https://launchpad.net/~inkscape.dev/+archive/ubuntu/stable
Press [ENTER] to continue or ctrl-c to cancel adding it
gpg: keyring `/tmp/tmpmzuhirpt/secring.gpg' created
gpg: keyring `/tmp/tmpmzuhirpt/pubring.gpg' created
gpg: requesting key B9A06DE3 from hkp server keyserver.ubuntu.com
gpg: /tmp/tmpmzuhirpt/trustdb.gpg: trustdb created
gpg: key B9A06DE3: public key "Launchpad PPA for Inkscape >Developers" imported
gpg: Total number processed: 1
gpg: imported: 1 (RSA: 1)
OK
$ sudo apt-get upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
答案1
sudo apt-get update
仅更新软件包列表。运行
sudo apt-get upgrade
之后sudo apt-get update
实际安装可用的更新。
或者,您可以清除(警告:删除应用程序和配置文件)首先安装 Inkscape 及其依赖项,然后在添加 PPA 后重新安装它。为此,请按顺序运行以下命令。
sudo apt-get purge --auto-remove inkscape
sudo add-apt-repository ppa:inkscape.dev/stable
sudo apt-get update
sudo apt-get install inkscape