2

I have done all these

sudo apt-get update && sudo apt-get upgrade
sudo apt-get dist-upgrade

sudo add-apt-repository ppa:phablet-team/tools
sudo apt-get update

sudo apt-get install phablet-tools android-tools-adb android-tools-fastboot

its 12.04 LTS i think...

screenshot

Wilf
  • 30,194
  • 17
  • 108
  • 164
ntakouris
  • 265
  • 1
  • 2
  • 7
  • Do a sudo apt-get update followed by sudo apt-get upgrade and then sudo apt-get install -f. – Mahesh Mar 02 '14 at 10:27

1 Answers1

2

It is telling you that the packages are already installed, but it has not installed all of the other packages it needs to work. You should be able to solve this by running this:

sudo apt-get -f install

(This command should automatically install the unmet dependencies.)

or this:

sudo apt-get install click curl dpkg-dev python-lzma python-requests imagemagick ubuntu-dev-tools

If some of those packages are not available, you can search for ways to install them here or here.

Wilf
  • 30,194
  • 17
  • 108
  • 164