首页 > 代码库 > How to install .deb file in Ubuntu

How to install .deb file in Ubuntu

if you have a .deb file:

  • You can install it using 

  sudo dpkg -i /path/to/deb/file 

  • followed by 

sudo apt-get install -f.

How to install .deb file in Ubuntu