Update Skype on Ubuntu

User
ubuntu 20.04
Assistant
The screenshot shows an outdated version of Skype running on Ubuntu 20.04. To update Skype, follow these steps:

### **Method 1: Update via Terminal**
1. **Open Terminal** (`Ctrl + Alt + T`).
2. **Remove old version:**

sudo apt remove skypeforlinux

3. **Download the latest version:**

wget https://go.skype.com/skypeforlinux-64.deb

4. **Install Skype:**

sudo dpkg -i skypeforlinux-64.deb

5. **Fix missing dependencies if needed:**

sudo apt --fix-broken install

6. **Launch Skype:**

skypeforlinux

### **Method 2: Update via Snap (Recommended)**
If you installed Skype via Snap, update it using:

sudo snap refresh skype

Or, install it if missing:

sudo snap install skype --classic

Let me know if you need further help! ๐Ÿš€

User
still showing update required
Assistant
If Skype is still showing the "Update Required" message after updating, try the following solutions:

### **1. Check Installed Version**
Run the following command to check your installed Skype version:

skypeforlinux --version

Then, compare it with the latest version available on Skypeโ€™s official website:
๐Ÿ”— [https://www.skype.com/en/get-skype/](https://www.skype.com/en/get-skype/)

If your version is outdated, proceed with the next steps.

### **2. Remove Skype Completely and Reinstall**
Run the following commands to remove any existing Skype installation:

sudo apt remove --purge skypeforlinux
sudo rm -rf ~/.config/skypeforlinux

Then, reinstall Skype using Snap (recommended):

sudo snap install skype --classic

Or, reinstall using the `.deb` package:

wget https://go.skype.com/skypeforlinux-64.deb
sudo dpkg -i skypeforlinux-64.deb
sudo apt --fix-broken install

### **3. Run Skype in Incognito Mode**
Sometimes, cached settings cause issues. Try running Skype in guest mode:

skypeforlinux --guest

### **4. Check for Snap Conflicts**
If you previously installed Skype via Snap, remove conflicting versions:

sudo snap remove skype

Then, reinstall it:

sudo snap install skype --classic

### **5. Try Flatpak (Alternative Installation)**
If all else fails, install Skype via Flatpak:

sudo apt install flatpak -y
flatpak install flathub com.skype.Client -y
flatpak run com.skype.Client

### **6. Restart Your System**
After reinstalling, restart your system:

sudo reboot

Try these steps and let me know if Skype is working now! ๐Ÿš€

Leave a Comment

Your email address will not be published. Required fields are marked *