Celeb Glow
updates | March 30, 2026

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

On a Lenovo laptop, I want to upgrade from Ubuntu 18.04 to Ubuntu 18.10 (budgie).

When I select upgrade on the update manager, the dialog box disappears and nothing happens. The upgrade doesn't start.

Note- I went through the same procedure this morning on my other laptop and Ubuntu successfully upgraded.

do-release-upgrade fails to upgrade and throws this error:

Please install all available updates for your release before upgrading.

What can I do to upgrade the system successfully?

4

7 Answers

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.

9

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.

4

Install all updates and then perform the system upgrade via Terminal, that should work:

sudo apt-get update && sudo apt-get upgrade
sudo apt dist-upgrade
sudo do-release-upgrade
3

I had the "kept back" issue with some Wine package, but didn't need them, so just did apt-get remove (packages) followed by apt-get autoremove, and it solved the problem.

2

I had exactly the same issue on my Lenovo ThinkPad X240. After sudo apt-get update && sudo apt-get upgrade in the Terminal, the graphical update-manager (Software Updater) worked properly...

Also manually check if when you use sudo apt update, it shows All packages are up to date.

Because, even if you use sudo apt upgrade, the system may not upgrade everything.

in my particular case, the wine wasn't upgrading at all, and because of that i couldn't successfully sudo do-release-upgrade. So, i removed the wine and then sudo apt autoremove.

After that, i could easily update my release version.

CLOSE VOTERS: Ubuntu 18.04 is the last version of Ubuntu to have a supported 32-bit upgrade path. The upgrade path for later versions was disabled. This is NOT "not an answer" or similar, and is an actively confirmed situation of disabled upgrade paths. 32-bit (i386) Ubuntu is no longer supported past 18.04 for upgrading to. -- Thomas Ward, Ubuntu Core Dev and Moderator of Ask Ubuntu

What version of the OS do you have (32/64 bit)? The output of the terminal on my Lubuntu machine after a use of sudo do-release-upgrade is:

apt architecture is i386
Upgrades from 18.04 on the i386 architecture are not supported at
this time.

(The command sudo do-release-upgrade -d is for upgrading to the latest development release! And it is possible from the latest release only.)


0