Friday, May 3, 2024
 Popular · Latest · Hot · Upcoming
1
rated 0 times [  1] [ 0]  / answers: 1 / hits: 6038  / 3 Years ago, mon, june 14, 2021, 4:25:57

I downloaded Skype for Ubuntu from here. I tried to install it with the command sudo dpkg -i skype-ubuntu-precise_4.2.0.11-1_i386.deb but the installation failed. The following lines were displayed in the terminal:



dineshkumar@dineshkumar-desktop:~/Downloads$ sudo dpkg -i skype-ubuntu-precise_4.2.0.11-1_i386.deb
Selecting previously unselected package skype.
(Reading database ... 169017 files and directories currently installed.)
Unpacking skype (from skype-ubuntu-precise_4.2.0.11-1_i386.deb) ...
dpkg: dependency problems prevent configuration of skype:
skype depends on libqtwebkit4 (>= 2.2~2011week36); however:
Package libqtwebkit4 is not installed.
skype depends on libxss1; however:
Package libxss1 is not installed.
dpkg: error processing skype (--install):
dependency problems - leaving unconfigured
Processing triggers for hicolor-icon-theme ...
Processing triggers for desktop-file-utils ...
Processing triggers for bamfdaemon ...
Rebuilding /usr/share/applications/bamf.index...
Processing triggers for gnome-menus ...
Errors were encountered while processing:
skype


Why did the installation fail and how could I install Skype from the .deb file that I have?



I checked the question here but found it of no use. The problem being discussed there was about Skype malfunctioning after an update. But in my case, I couldn't even install Skype properly.


More From » 12.04

 Answers
4

The error is caused by dependency problems (absence of some packages which skype requires for it to be installed). The following lines that were displayed confirm this:



skype depends on libqtwebkit4 (>= 2.2~2011week36); however:
Package libqtwebkit4 is not installed.
skype depends on libxss1; however:
Package libxss1 is not installed.
dpkg: error processing skype (--install):
dependency problems - leaving unconfigured


Therefore, it is obvious that the error can be overcome by installing the missing packages (libqtwebkit4 & libxss1). To install these packages,




  • Open the Terminal.

  • Type sudo apt-get install libqtwebkit4 to install the libqtwebkit4 package.

  • Type sudo apt-get install libxss1 to install the libxss1 package.

  • After installing the required packages, continue with the process of installing skype with the command sudo dpkg -i skype-ubuntu-precise_4.2.0.11-1_i386.deb


[#30010] Wednesday, June 16, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
weamp

Total Points: 197
Total Questions: 115
Total Answers: 92

Location: Mauritania
Member since Sun, May 7, 2023
1 Year ago
;