17

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

dhiya
  • 953

2 Answers2

42

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
hg8
  • 13,462
3

If you are looking for RC5, you can try

Libreoffice Packaging Team

sudo add-apt-repository ppa:libreoffice/ppa

Or

Libreoffice Pre-Release

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

Keep in mind they are early releases and unstables versions.

bitseater
  • 206