não consigo instalar o skype no ubuntu 15.10

0
o@lifebook:~$ sudo apt-get install skype
[sudo] password for o: 
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
E: Unable to correct problems, you have held broken packages.

eu também tentei o apt-get install skype-bin skype mas não está funcionando

 sudo apt-get install skype-bin 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-bin:i386 : Depends: libqtwebkit4:i386 (>= 2.2~2011week36) but it is not going to be installed
                  Depends: libgl1-mesa-glx:i386 but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
    
por Azat 09.01.2016 / 03:23

4 respostas

-1
528  sudo add-apt-repository ppa:ubuntu-mozilla-daily/ppa 
  529  sudo sh -c 'echo "deb http://archive.canonical.com/ubuntu/ wily partner" >> \
  530  /etc/apt/sources.list.d/canonical_partner.list' 
  531  sudo add-apt-repository ppa:xorg-edgers/ppa 
  532  sudo apt-key adv --keyserver pgp.mit.edu --recv-keys 5044912E
  533  sudo apt-get update 
  534  sudo apt-get install dro
  535  wget -q -O - http://archive.getdeb.net/getdeb-archive.key | sudo apt-key add -
  536  sudo sh -c 'echo "deb http://archive.getdeb.net/ubuntu wily-getdeb apps" >> /etc/apt/sources.list.d/getdeb.list'
  537  wget -q -O - http://archive.getdeb.net/getdeb-archive.key | sudo apt-key add -
  538  sudo sh -c 'echo "deb http://archive.getdeb.net/ubuntu wily-getdeb games" >> /etc/apt/sources.list.d/getdeb.list'
  539  sudo add-apt-repository ppa:libreoffice/ppa 
  540  sudo add-apt-repository ppa:ubuntu-desktop/ppa 
  541  sudo add-apt-repository ppa:ubuntu-sdk-team/ppa 
  542  sudo apt-get update 
  543  sudo sh -c 'echo "deb http://archive.canonical.com/ubuntu/ wily partner" >> \
/etc/apt/sources.list.d/canonical_partner.list' 
  544  sudo apt-get install skype
  545  sudo apt-get update 
  546  sudo apt-get history
  547  history 

este é o meu arquivo de histórico. Depois de adicionar algum arquivo de rep skype foi instalado e eu não sei y ???? mas funciona !!!! skype 15.10

sudo dpkg --add-architecture i386

foi usado antes

    
por Azat 09.01.2016 / 07:15
0

Você pode fazer o download do link para

do Ubuntu

Abra o terminal

Executar:

 sudo apt-get purge skype skype-bin

Ou

Primeiro:

sudo apt-get -f install

Então

sudo apt-get install skype
    
por Ramesh Chand 09.01.2016 / 05:28
0

O Skype é um aplicativo de 32 bits e você tem uma instalação de 64 bits. Daí você precisa dizer ao seu sistema para instalar bibliotecas de 32 bits, quando aplicável. Você pode fazer isso com este comando:

sudo dpkg --add-architecture i386

Isso deve ser suficiente para se livrar desses erros de "dependências não atendidas".

    
por Gunnar Hjalmarsson 09.01.2016 / 14:43
-3

O Skype for linux não foi atualizado desde 12.04; É mais provável que o problema seja, se você estiver usando um ppa as dependências necessárias são para 12.4 e o apt-get não está recuperando as dependências do ppa, se você instalou o g-debi é melhor você ir para www.skype.com e basta ir para downloads e escolher o deb que eles têm para 12.4 (multiarch) dessa forma você obtém todas as dependências do deb, é assim que eu instalei no meu fim.

    
por Miguel Garcia 09.01.2016 / 04:56