Install .deb file as package
in Ubuntu ; to install any software ; if you found .deb package then download it
and here are 2 ways which you can use to install .deb file
install gedbi : A package manager
> sudo apt install gdebiand now install using below command
>sudo apt install ./<package-name>.debNote: don’t forget to add ./ even you are in same location where package is downloaded
using without package manager
> sudo dpkg -i <./absolute/path/to/package.deb>Thanks.