Friday, May 3, 2024
 Popular · Latest · Hot · Upcoming
3
rated 0 times [  3] [ 0]  / answers: 1 / hits: 32150  / 2 Years ago, mon, february 14, 2022, 2:36:04

Running Ubuntu 14.04 LTS, I tryed to install skype.


In terminal:


 sudo sh -c ‘echo “deb http://archive.canonical.com/ubuntu trusty partner” >>
/etc/apt/sources.list.d/canonical_partner.list’

sudo apt-get update

sudo apt-get install skype

E: Unable to locate package skype


 sudo apt-get -f install

sudo apt-get install skype

E: Unable to locate package skype


So, no skype... How do I get skype?


More From » apt

 Answers
3

It's in there:



$ apt-cache policy skype
skype:
Installed: (none)
Candidate: 4.2.0.11-0ubuntu0.12.04.2
Version table:
4.2.0.11-0ubuntu0.12.04.2 0
500 http://archive.canonical.com/ubuntu/ trusty/partner amd64 Packages


Looking at your post, it looks like you've copied in some curly-quotes. These aren't interpreted by Bash in the same way so they're probably not working as intended. I'd use this instead:



echo "deb http://archive.canonical.com/ubuntu trusty partner" | sudo tee -a /etc/apt/sources.list.d/canonical_partner.list
sudo apt-get update
sudo apt-get install skype

[#24898] Tuesday, February 15, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
rofity

Total Points: 182
Total Questions: 98
Total Answers: 115

Location: Albania
Member since Sat, Jan 7, 2023
1 Year ago
;