Skip to main content
Ksen.1
Visitor II
May 30, 2021
Solved

"Nothing to install." after trying to install IDE

  • May 30, 2021
  • 2 replies
  • 2079 views

I had a problem with the IDE and deleted it by manually searching all the files on my ubuntu 20.04.

Now when I try to run the binary again, it says "Nothing to install.", however I have deleted all stm files from my machine.

What can I do?

Best answer by Julien D

Hi,

Looks like STM32CubeIDE is still part of the native package manager database.

To check this assumption you can use the dpkg command:

dpkg -l '*stm32cubeide*'

And then remove correctly the package using :

sudo dpkg -r st-stm32cubeide-1.x.x

Replace the version token 1.x.x by the one reported in first dpkg query.

HTH

2 replies

Julien D
Julien DBest answer
ST Employee
May 31, 2021

Hi,

Looks like STM32CubeIDE is still part of the native package manager database.

To check this assumption you can use the dpkg command:

dpkg -l '*stm32cubeide*'

And then remove correctly the package using :

sudo dpkg -r st-stm32cubeide-1.x.x

Replace the version token 1.x.x by the one reported in first dpkg query.

HTH

To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
oeliks
Associate III
June 12, 2021

Isn't there a uninstaller under installation folder opt/ ?

Visitor II
September 29, 2024

To ST employee,

I was struggling with this issue for a while. I had to open the (heavy) script to understand why it does not install. Please make sure to at least issue a warning when the script detects that the package was already installed/available in system and ask user to uninstall (via dpkg). A basic warning should do, and this is fundamental.