1

I've downloaded a Sublime Editor .deb package, and when I open it in Software Install, I click Install, and the Install button progress bar moves to the end of the button, but nothing else happens, and Sublime Editor does not get installed.

If I click Install again, I get a new tab in the Launcher with title "Waiting to install", and nothing else happens.

This behaviour occurred in Ubuntu 16.04.1.

Upgrading to Ubuntu 16.10 does not resolve the problem.

(I applied the update mentioned in this question)

Help appreciated.

Steve
  • 121

2 Answers2

5

Open a terminal (press Ctrl+Alt+T) and run:

cd Downloads
sudo dpkg -i sublime-text*.deb
sudo apt install -f
Chai T. Rex
  • 5,323
3

I prefer the answer provided by Chai T.Rex. But sometimes you just want a simple point and click procedure. You can acheive that by

#install gdebi package manager
sudo apt-get install gdebi

right click on sublime-text*.deb and select Open With > Gdebi Package Manager.

Sirajus Salekin
  • 1,737
  • 13
  • 29