Error while trying to upgrade from Ubuntu 18.04 to 18.10: "Please install all available updates for your release before upgrading."

Enable upgrading from LTS to non-LTS versions (20.04 to 20.10, 18.04 to 18.10)

On 20.04, they've added a clearer message to the failing sudo do-release-upgrade:

Checking for a new Ubuntu release
There is no development version of an LTS available.
To upgrade to the latest non-LTS develoment release 
set Prompt=normal in /etc/update-manager/release-upgrades.

Previously, e.g. from 18.04 to 18.10, it was sometimes just giving a unclear error message as reported by the OP:

Please install all available updates for your release before upgrading

The solution to both of those is to go into:

software-properties-gtk

or access it through the Windows key dash where it is named:

Software & Updates

Then:

  • "Updates" tab
  • "Notify me of a new Ubuntu version" dropdown
  • "For any new version"

enter image description here

TODO how to do it from the command line only?

Then as usual:

sudo apt update
sudo apt upgrade
sudo apt dist-upgrade
sudo do-release-upgrade

Without the For any new version setting, it failed to find the new version with:

No new release found.

For some reason, apt-get missed one of the upgrades and I got:

Please install all available updates for your release before upgrading."

only apt worked.

19.10 to 20.04: manually install any packages that didn't automatically upgrade

I came across this when trying to upgrade from 19.10 to 20.04 and it has the same Please install all available updates for your release before upgrading error message, so I'll also give the solution here for Googlers.

When I tried the usual:

sudo apt update
sudo apt upgrade
sudo apt dist-upgrade
sudo do-release-upgrade

sudo apt upgrade told me:

The following packages have been kept back:
  libomp-dev
0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.

and then do-release-upgrade gave the Please install all available updates for your release before upgrading. error.

The solution was to manually install libomp-dev:

sudo apt install libomp-dev

This gave me some conflict resolution options, I picked one of them, and then do-release-upgrade worked!

sudo apt upgrade libomp-dev did not work, only apt install did, upgrade failed with:

The following packages have unmet dependencies:
 libomp-dev : Depends: libomp-9-dev (>= 9~) but it is not going to be installed
E: Broken packages

do-release-upgrade -d enables development versions, which is not what you generally want

I advise against do-release-upgrade -d unless you really know what you are doing as that upgrades to unstable development versions, which is not something that most users want.

The upgrade only becomes available a few days/weeks after the ISO is released

Also note that the upgrade is not released at the exact same time as the 18.10 disk comes out, it seems that you have to wait a few days until 18.10.1 is released before upgrading.

If you try sudo do-release-upgrade before that, you still get:

No new release found.

The ".0" ISO is also generally more buggy. E.g. when I tried the 21.04 ISO the UI was randomly crashing likely due to Wayland: Ubuntu UI screen image freezes randomly during usage after fresh 21.04 install, suspecting Wayland or Nouveau so it's generally better to just wait for the .1 to come out unless you want to help debug it.


I've came across the same issue when upgrading from 18.10 to 19.04. In my case the reason was that I had some packages marked as kept back. In this case they were related to MSSQL.

szymon@szymon-Lenovo-Z580:~$ sudo apt upgrade 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Calculating upgrade... Done
The following packages have been kept back:
  libodbc1 unixodbc
0 to upgrade, 0 to newly install, 0 to remove and 2 not to upgrade.

I simply removed them along with their dependencies:

szymon@szymon-Lenovo-Z580:~$ sudo apt remove unixodbc libodbc1
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  odbcinst odbcinst1debian2
Use 'sudo apt autoremove' to remove them.
The following packages will be REMOVED
freetds-bin libodbc1 msodbcsql17 mssql-tools unixodbc

Then the following sequence of commands led me to the successful upgrade:

sudo apt update
sudo apt upgrade
sudo apt dist-upgrade
sudo do-release-upgrade

EDIT: Later I found this detailed Michael's answer to similar question which might help achieve the same goal.