Ubuntu-Deb-File-Install¶
Ubuntu Debian File Installation¶
Table of Content¶
Install deb file from Command Line¶
To install deb package from CL, simply run:
sudp dpkg -i <package.deb>
Steps to Fix Dependencies Error¶
Instruct dpkg to “fix” itself.
sudo dpkg --configure -a
This will instruct apt-get to correct dependencies and continue to configure your packages
sudo apt-get -f install
Reinstall the package
sudo dpkg -i <package.deb>
Note:
In case of using apt install:
sudo apt install <package> --reinstall