0

I have some packages in .deb format like: google-chrome, teamviewer, brackets and so on that I have downloaded.

My Internet connection is slow, so I need to avoid downloading them again if possible.

I want to install these packages by a command line method, because Ubuntu Software seems unable to install them.

Zanna
  • 70,465
rateb
  • 49

1 Answers1

0

At the command line, you can install .deb files with:

sudo dpkg -i <file>

Mark
  • 1,502
  • must be where ? – rateb Jul 23 '17 at 13:24
  • You've indicated you "have some packages by format(deb)" ... those are the files. – Mark Jul 23 '17 at 13:25
  • @rateb to run this command, the file must be in the current working directory, or you can specify the exact path to it. But please see the linked duplicate for better methods, specifically you can now use APT which performs dependency resolution – Zanna Jul 23 '17 at 13:26