0

I'm new to Ubuntu and have installed an app on my device successfully. But I want to reinstall this app so that I uninstall it then reinstall. But when I reinstall, this error appear

enter image description here

I have uninstall app by using Ubuntu Software. Does I need to delete anything else?

andrew.46
  • 39,359
Tina
  • 11

1 Answers1

2

When you want to install a local package, just use the apt command. Also remember to prefix your local file with ./. If you don't add the ./ prefix, apt will try to find the package name in the repositories.

So run the installation command like this:

sudo apt install ./Lark-linux_x64-5.10.7.deb

If the package already exists, and you want to reinstall, add the --reinstall option:

sudo apt install --reinstall ./Lark-linux_x64-5.10.7.deb
Artur Meinild
  • 31,035