#How to find a newly downloaded app, install and uninstall
5 messages · Page 1 of 1 (latest)
That depends on the format you've downloaded.
if you downloaded a file ending in .deb -> sudo dpkg -i /path/to/packageFile.deb && apt install -f
if you downloaded a file ending in .tar -> tar -xvf /path/to/archiveFile.tar.xxx and then locate the program, run chmod +x /path/to/binaryProgram and finaly run it
if you downloaded a .AppImage file -> chmod +x /path/to/appimage.AppImage and then run it