how to install a program with a .deb files code example
Example 1: install deb file in ubuntu
sudo apt install path_to_deb_file
Example 2: install *.deb file in ubuntu
Install a downloaded program in Ubuntu - Linux
sudo dpkg -i package_file.deb
//or
sudo apt install path_to_deb_file