Could never figure it out, same with anything that isn’t a flatpak from the popshop
Is this Pop_OS 22.04¿?
If so there is a tool called eddy pre-installed to handled .deb file installs. All you have to do is double click on the file.
deleted by creator
Odd. Can you share which application is it that you are trying to install. Maybe it doesn’t create a desktop file hence the lack of an launcher in the app drawer¿?
Sounds like there is a dependency issue. Why are you trying to install an external package? Are you sure it isn’t a flatpak or native package?
Worse case install it inside distrobox with the podman backend.
in most cases you really shouldn’t
- Step 1: download deb
- Step 2: open a terminal
- Step 3:
sudo dpkg -i /path/to/yourde.deb
Now whether or not all the packages are fubared at this point is unknown, but that’s how to install a deb file.
this usually errors out on some missing dependencies.
apt-get -f install
should get them and continue with the installation.
However, as other have said, get an app like gdebi or eddy, and install the .deb throug that.
deleted by creator
In addition to what other people have said about gdebi, I’m surprised it’s not there by default in Pop. I thought it was there in pretty much all Ubuntu-based distros (except where alternatives are used).
I totally get not wanting to use the terminal for this purpose. It’s pretty rare that I download and install a .deb, but when I do, it’s nice to just click it straight from the browser and not have to navigate to my download folder in the terminal. And given how rarely I download and install .deb files, I have to look up the command every time.
Yes, gdebi :
I don’t know what this people talking about,u need just double click on deb file it will open grahical installer,if not check file assisation it shoulb be assigned to Eddy program.It’s pop os alternative to gdebi.
GDebi is a GUI tool for that, but idk the terminal seems to be more easy. It’s already there and the instructions to do it are simple.
Did you know the Tab key autocompletes in terminal? press it twice to get a list of possible completions. That makes it easy to navigate to the file.
Sure, basically any Debian-based distro should have
gdebi
in its repos.If you want something graphical to install a single deb, you can install
gdebi
:https://itsfoss.com/gdebi-default-ubuntu-software-center/
With this installed, anytime you download a deb, it will open the deb in
gdebi
and allow you to install the package graphically.Does it have Discovery as a normal app store? You might be able to use that.
Honestly, give the terminal a shot - it’s not as complicated as you may think.
Now whether or not all the packages are fubared at this point is unknown, but that’s how to install a deb file.
Normal dependency checks will still be performed so it won’t wreck the system.
sudo apt install /path/to/your/package.deb
Might have to right click and make sure it’s executable, then double click it to install.
I usually do
sudo dpkg -i <filename.deb>