Ubuntu – How to install LibreOffice 5.0 in Ubuntu?

libreoffice

Libreoffice 5.0 was just released.

tried

sudo add-apt-repository ppa:libreoffice/libreoffice-5.0

But

cannot add PPA: 'ppa:~libreoffice/ubuntu/libreoffice-5-0'.
The team named '~libreoffice' has no PPA named 'ubuntu/libreoffice-5-0'

Edit: You can add Libreofiice 5.0 using

sudo add-apt-repository -y ppa:libreoffice/ppa

Best Answer

Simply use the official PPA :

sudo add-apt-repository ppa:libreoffice/ppa
sudo apt-get update

Option 1 : You don't have libreoffice yet :

Open a terminal (Ctrl+Alt+T) and run:

sudo apt-get install libreoffice

Or install using Ubuntu Software center :

Install via the software center


Option 2 : You already have an old version of LibreOffice (4.x) :

Open a terminal (Ctrl+Alt+T) and run:

sudo apt-get upgrade
Related Question