安装 skype-call-recorder 时缺少依赖包

安装 skype-call-recorder 时缺少依赖包

我正在尝试安装skype-call-recorder以下本教程

但是,我收到了依赖性错误:

~/Downloads$ sudo dpkg -i skype-call-recorder-ubuntu_0.8_i386.deb 

(Reading database ... 158095 files and directories currently installed.)
Preparing to replace skype-call-recorder 0.8 (using skype-call-recorder-ubuntu_0.8_i386.deb) ...
Unpacking replacement skype-call-recorder ...
dpkg: dependency problems prevent configuration of skype-call-recorder:
 skype-call-recorder depends on libqt4-gui (>= 4.3); however:
  Package libqt4-gui is not configured yet.
dpkg: error processing skype-call-recorder (--install):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 skype-call-recorder

然后我尝试:

$ sudo apt-get install libqt4-gui
Reading package lists... Done
Building dependency tree       
Reading state information... Done
libqt4-gui is already the newest version.
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 libqt4-gui : Depends: libqt4-designer (= 4:4.7.4-0ubuntu8.3) but it is not going to be installed
              Depends: libqt4-opengl (= 4:4.7.4-0ubuntu8.3) but 4:4.7.4-0ubuntu8 is to be installed
              Depends: libqt4-svg (= 4:4.7.4-0ubuntu8.3) but 4:4.7.4-0ubuntu8 is to be installed
              Depends: libqtgui4 (= 4:4.7.4-0ubuntu8.3) but 4:4.7.4-0ubuntu8 is to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

你能告诉我我缺少什么或我应该如何安装它吗?我的 Ubuntu 版本是 11.10 32 位。

答案1

使用dpkg -i安装.deb包不会解析依赖项并安装它们。例如,您必须手动安装它们sudo apt-get install libqtgui4,或者您需要使用另一个解析依赖项的工具,例如运行software-center skype-call-recorder-ubuntu_0.8_i386.deb也应该解析依赖项并提取必要的包。

相关内容