有没有办法知道使用命令行安装了哪个GTK版本?


Answers:


55

apt-cache policy libgtk2.0-0 libgtk-3-0(可选地通过管道连接到grep Installed

要么

dpkg -l libgtk2.0-0 libgtk-3-0


7

尝试这个:

dpkg -l libgtk2.0-0 libgtk-3-0

这将提供有关GTK 2和GTK 3的信息。


5

--get-selections将显示已安装的软件包

dpkg --get-selections | grep gtk

3
  1. 打开Synaptic软件包管理器: 在此处输入图片说明

  2. 在“快速过滤器”下,输入“ libgtk-3”。

  3. Gtk3库包含在“ libgtk-3-0”中。为了方便起见,可能需要选择它。您已安装的版本出现在“已安装版本”列中。如果需要其他信息,请点击按钮“属性”。

2

尝试: dpkg-query -W libgtk-3-bin

# Gives version as 3.10.8, separated on the left by a tab, and on the right by a ~
$ dpkg-query -W libgtk-3-bin
libgtk-3-bin    3.10.8~8+qiana

# An associated package also gives the package architecture [for me]
$ dpkg-query -W libgtk-3-0
libgtk-3-0:amd64    3.10.8~8+qiana
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.