无法在 64 位 Ubuntu 上安装 Skype

无法在 64 位 Ubuntu 上安装 Skype

注意:旧版 Skype for Linux 应用程序 (v4.*) 现已停用,并已从 Canonical 的合作伙伴存储库中删除,因此此问题及其答案已过时。请参阅一个较新的答案我们的规范的 Skype 安装问题


我在尝试安装 Skype 时收到以下消息:

nidhin@ubuntu:~$ sudo apt-get update
nidhin@ubuntu:~$ sudo apt-get install skype
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 skype : Depends: skype-bin but it is not installable
E: Unable to correct problems, you have held broken packages

我怎样才能解决这个问题?

答案1

12.10 及更高版本

我遇到了同样的问题,有帮助的是通过执行以下操作来启用 32 位架构:

sudo dpkg --add-architecture i386
sudo apt-get update

然后我就可以通过 Canonical Partner Repository 安装 skype 了:

sudo add-apt-repository "deb http://archive.canonical.com/ $(lsb_release -sc) partner"
sudo apt-get update && sudo apt-get install skype

答案2

首先,在 Ubuntu 64 位系统上运行以下命令之前,您必须启用 i386 架构。

sudo dpkg --add-architecture i386

然后在终端上运行以下命令进行安装Skype

Ubuntu 13.10

sudo sh -c "echo 'deb http://archive.canonical.com/ saucy partner' >> /etc/apt/sources.list.d/canonical_partner.list"
sudo apt-get update
sudo apt-get install skype

Ubuntu 14.04

sudo sh -c "echo 'deb http://archive.canonical.com/ trusty partner' >> /etc/apt/sources.list.d/canonical_partner.list"
sudo apt-get update
sudo apt-get install skype

答案3

我建议先完全删除 skype-bin,然后按如下方式安装 Skype。

在终端中运行以下命令

sudo apt-get remove skype skype-bin

sudo apt-get install libxss1  

wget http://www.skype.com/go/getskype-linux-ubuntu-64/skype-ubuntu-precise_4.1.0.20-1_amd64.deb

sudo dpkg -i skype-ubuntu*.deb

答案4

skype 不是来自 ubuntu。它是规范基金会支持的第三方软件,因此使用编辑您的 source.list

$sudo gedit /etc/apt/source.list

然后将以下链接添加到您的源列表中

deb http://archive.canonical.com/ubuntu $(lsb_release -sc) partner
deb-src http://archive.canonical.com/ubuntu $(lsb_release -sc) partner

$(lsb_release -sc)将其替换为您的 ubuntu 名称。保存。然后使用以下方法更新您的存储库

$sudo apt-get update

现在运行以下命令来安装 skype

$sudo apt-get install skype

这将安装 skype 和 skype.bin。

相关内容