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
I have uninstall app by using Ubuntu Software. Does I need to delete anything else?
apt-get
is a tool to download & install a package; your pasted image shows you trying to use it to install a local file which isn't how it works. The commandapt
has the capacity to install locally produced files (otherwise you use thedpkg
command thatapt-get
is a front-end tool for). You do realize you canapt install --reinstall
and thus skip the 'delete' stage.... – guiverc Feb 13 '23 at 07:10apt-get
is a download & install utility; why it's got get in the command so that package needs to exist in your sources to be found (ie. the command doesn't look locally as it's going to 'get' it for you!) – guiverc Feb 13 '23 at 07:15./filename
. But it's easier to useapt
on the CLI. – Artur Meinild Feb 13 '23 at 07:44