You can install local packages in Debian/Ubuntu in several ways.
apt
$ sudo apt install /path/to/package.deb
Using apt, the dependencies will be installed automatically.
dpkg
$ sudo dpkg -i /path/to/package.deb
Keep in mind that dpkg won’t install dependencies automatically, so you need to run also:
$ sudo apt-get install -f