Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

I am receiving the following message while I am trying to install 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

How can I fix this?

share|improve this question

7 Answers

I'd the same issue and what helps me was to enable the 32-bit architecture by:

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

then I was able to install skype via the Canonical Partner Repository:

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

and also via direct skype download:

wget http://www.skype.com/go/getskype-linux-ubuntu-64/skype-ubuntu-quantal_4.1.0.20-1_amd64.deb
sudo dpkg -i skype-ubuntu*.deb

I hope that help someone.

share|improve this answer
1  
Thanks a lot for this great answer. I was trying to install skype on Ububtu 12.10 64 but for last 2 months, tried 100 different ways and only this one works. – Samvel Siradeghyan Jan 7 at 21:37
Worked for me too, Thanks. – Edgar Eler Jan 14 at 13:11

Try this: https://help.ubuntu.com/community/Skype ! It fixed the problem for me.

share|improve this answer

Heres how I did it with no issues, skype is working great.

sudo apt-get install skype-bin skype

share|improve this answer
1  
Welcome to Ask Ubuntu! I think this is unlikely to work for the problem described in this question. A skype-bin...is not installable error won't go away just by manually indicating the skype-bin package for installation. If you did experience this same problem and this solution did work for you, that's unusual, and I recommend editing your answer to provide some additional information. – Eliah Kagan Dec 25 '12 at 4:31

I suggest to remove skype-bin first completely and install Skype as follows.

Run following commands in Terminal

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
share|improve this answer

I found the solution to this problem from a different post.

First a downgrade is required and done with the following:

create the preferences file:

sudo vi /etc/apt/preferences

and insert the following lines:

Package: *       
Pin: release a=quantal*
Pin-Priority: 2012

enter :wq to write the file. Pin-Priority must be greater than 1000.

Then you may downgrade the offending applications with:

sudo apt-get dist-upgrade

That's it.

Now use

sudo apt-get install Skype

And it works!

share|improve this answer

Try these commands:

sudo apt-get install libxss1 
cd /tmp 
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

Source: http://www.tecmint.com/install-skype-4-1-in-ubuntu-xubuntu-linux-mint/

share|improve this answer

Install Synaptic if you don't have it, Open it, then go to Edit > Fix Broken Packages. After that try to install Skype.

share|improve this answer
Thank you for the suggestion..I have done as you suggested however I am still getting the same error message – Nidhin Nov 10 '12 at 9:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.