Asked
Active
Viewed 852 times
1 Answers
0
Well, this is why you use software center or apt-get to install packages rather then dpkg. dpkg does NOT resolve dependencies.
You should NOT be downloading and installing random .deb from across the internet, use the ubuntu repositories.
See How do I install applications in Ubuntu? and https://help.ubuntu.com/community/InstallingSoftwar
To install the dependencies, run:
sudo apt-get install -f
and you should be good to go.

Panther
- 102,067
sudo apt-get install -f
and you should be good to go. – Panther Aug 10 '17 at 15:38sudo apt-add-repository ppa:webupd8team/atom
) and then use apt (or apt-get) as others have suggested (sudo apt update;sudo apt install atom
);. – StarNamer Aug 10 '17 at 23:10