我喜欢有一个终端连接到我的nautilus文件管理器。
有一个叫做“无极终端机”的包裹来完成这个任务。
如果我试图通过sudo apt-get install nautilus-terminal安装它,就会收到以下错误消息:
The following packages have unmet dependencies:
nautilus-terminal : Depends: gir1.2-vte-2.90 but it is not installable
E: Unable to correct problems, you have held broken packages.如果我试图通过sudo apt-get install gir1.2-vte-2.90安装它
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package gir1.2-vte-2.90 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'gir1.2-vte-2.90' has no installation candidate有人知道怎么解决这个问题吗?
发布于 2018-11-24 19:13:47
这个问题是因为您已经在您的ubuntu上安装了gir1.2-vte-2.91,但是由于包名包含版本号,所以它不能被识别为gir1.2-vte-2.90的更高版本,所以您只需要提供一个名为gir1.2-vte-2.90的包并将其连接到gir1.2-vte-2.91。这可以很容易地按照this answer的指示来完成。
https://stackoverflow.com/questions/48340876
复制相似问题