> ## Content Index
> Fetch the complete content index at: https://itsfoss.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# How to Install VLC Media Player on Ubuntu Linux
- URL: https://itsfoss.com/install-latest-vlc/
- Published: 2018-02-05T19:19:53.000Z
- Updated: 2023-05-01T10:22:06.000Z
- Description: This beginner’s tutorial shows the steps for installing VLC on Ubuntu. You’ll also learn to install the latest VLC version from its official PPA.
- Author: Abhishek Prakash
- Tags: Installation 📥, VLC

VLC is one of the [best video players for Linux](https://itsfoss.com/video-players-linux/), if not the best. It is popular on Windows and macOS as well. [VLC is a versatile tool that can do a lot more than just playing videos](https://itsfoss.com/simple-vlc-tips/) but I won’t be going into those details in this tutorial.

In this beginner’s tutorial, I’ll show you:

- How to install VLC on Ubuntu
- How to download the latest version of VLC using PPA
- How to update VLC on Ubuntu

Let’s cover it one by one.

## Install VLC on Ubuntu

The easiest way to install VLC media player on Ubuntu is by looking for it in the software center.

Open the software center and look for it:

![vlc media player ubuntu](https://itsfoss.com/content/images/wordpress/2021/09/vlc-media-player-ubuntu-800x538.webp)

VLC media player in Ubuntu Software Center

Please be careful to not install the Snap version of VLC. It is slow to start and does not integrate very well with the system.

This is why I would recommend using the command line to install VLC with [apt command](https://itsfoss.com/apt-command-guide/). Just [open a terminal ](https://itsfoss.com/open-terminal-ubuntu/)and use the following command:

```
sudo add-apt-repository universe
```

You’ll be asked to enter your account’s password. Nothing is displayed on the screen when you type the password and that’s perfectly normal.

![add universe repository](https://itsfoss.com/content/images/wordpress/2021/09/add-universe-repository.png)

Add universe repository

The above command will add [Universe repository](https://itsfoss.com/ubuntu-repositories/) to your system if it is not enabled already. VLC is available from this repository.

Install VLC now:

```
sudo apt install vlc
```

![installing vlc ubuntu](https://itsfoss.com/content/images/wordpress/2021/09/Installing-VLC-Ubuntu.png)

Installing VLC

That’s it. You successfully installed VLC on Ubuntu.

## Updating VLC in Ubuntu

Since you are using the VLC provided by Ubuntu, you do not need to worry about updating it. The package management is very handy here as it provides various system and software updates together.

This means if there is an update available on VLC from Ubuntu repositories, you’ll see it in the system updates.

You know [how to update Ubuntu](https://itsfoss.com/update-ubuntu/), don’t you?

![chrome edge update ubuntu](https://itsfoss.com/content/images/wordpress/2021/06/chrome-edge-update-ubuntu.png)

Software Updater provides various kinds of updates

## Removing VLC from Ubuntu

VLC is indeed a versatile media player but you may opt for some sleek and lightweight video players like [MPV](https://itsfoss.com/mpv-video-player/) or the evergreen [SMPlayer](https://itsfoss.com/smplayer/).

If you decided to use some other video player, you may choose to remove VLC from your system. After all, it will [free some disk pace](https://itsfoss.com/free-up-space-ubuntu-linux/).

To uninstall applications in Ubuntu, you can use the apt remove command like this:

```
sudo apt remove vlc
```

🚧

If you want the latest **stable** VLC, there is no official PPA anymore. You could use the snap package and get a newer **stable VLC version**: **`sudo snap install vlc`**

## Getting the latest VLC (development version) in Ubuntu (NOT RECOMMENDED)

If you [see the details of the package](https://itsfoss.com/apt-search-command/), you may find that the version of VLC available in the Ubuntu repositories is not the latest one.

If you really want the latest VLC, here’s the trick to get it.

VLC project [maintains an official PPA](https://launchpad.net/~videolan/+archive/ubuntu/master-daily?ref=itsfoss.com) that provides the ****latest development version of VLC*** media player. If you really want the daily build VLC version, you can [use this PPA](https://itsfoss.com/ppa-guide/).

In the terminal, use the following commands **one by one**:

```
sudo add-apt-repository ppa:videolan/master-daily
sudo apt update
sudo apt install vlc
```

This will also update the installed VLC version to the latest version.

### Getting back to the normal VLC version

If you do not want the latest VLC version anymore but still keep the one provided by Ubuntu, [use the magical PPA Purge tool](https://itsfoss.com/ppa-purge/).

Install PPA Purge first:

```
sudo apt install ppa-purge
```

And then you can use it to purge the VLC PPA which will downgrade the VLC version as well as disable the VLC PPA.

```
sudo ppa-purge ppa:videolan/master-daily
```

***Seeing a green line at the bottom? Here's how to fix it.***

[How To Fix Green Line at The Bottom in VLC in LinuxSeeing a green line at the bottom in VLC in Linux? No, don’t worry. You are not seeing things. Indeed a green or purple line on the screen in VLC is very common annoyance. Installing VLC on Ubuntu is one of the first few thing I do every time![](https://itsfoss.com/content/images/size/w256h256/2022/12/android-chrome-192x192.png)It's FOSSAbhishek Prakash![](https://itsfoss.com/content/images/wordpress/2015/03/Fix_Green_Line_VLC_Linux_2.png)](https://itsfoss.com/fix-green-line-in-vlc-in-linux/)

## Do more with VLC

You can download subtitles automatically.

[Download Subtitles Automatically With VLC Media PlayerVLC is my all time favourite video player. I consider it one of the best open source software. Apart from playing almost all kind of media files, it can also do several other things which you will hardly find in other video players for Linux. For example you can use![](https://itsfoss.com/content/images/size/w256h256/2022/12/android-chrome-192x192.png)It's FOSSAbhishek Prakash![](https://itsfoss.com/content/images/wordpress/2013/07/subtitles-to-cinema-download.jpg)](https://itsfoss.com/download-subtitles-automatically-vlc-media-player-ubuntu/)

Or, watch and [download YouTube videos](https://itsfoss.com/download-youtube-videos-ubuntu/) with it.

[Download YouTube Videos with VLC (Because, Why Not?)VLC is one of the most popular video players for Linux and other platforms. It’s not just a video player. It provides a number of multimedia and network-related features among other things. You’ll be surprised to learn what VLC is capable of. I’ll demonstrate a simple VLC![](https://itsfoss.com/content/images/size/w256h256/2022/12/android-chrome-192x192.png)It's FOSSCommunity![](https://itsfoss.com/content/images/wordpress/2022/06/download-youtube-videos-vlc.png)](https://itsfoss.com/download-youtube-videos-vlc/)

You can even make it trim videos, if you want.

[How to Trim a Video in VLC Player \[If You Really Want to\]VLC is a versatile media player. It even allows trimming videos with some effort. Here’s how to do it.![](https://itsfoss.com/content/images/size/w256h256/2022/12/android-chrome-192x192.png)It's FOSSSreenath![](https://itsfoss.com/content/images/wordpress/2022/11/trim-videos-in-linux.png)](https://itsfoss.com/vlc-trim-video/)

I hope you were able to install VLC on Ubuntu easily this way and also learned a few new things. 

Still have questions? Fire away :)