problema de dependência durante o download do google play dwonloader

2

Estou tentando baixar e instalar o google play downloader para o Ubuntu. Eu baixei o google play downloader de aqui . Eu tentei instalá-lo usando sudo dpkg -i googleplaydownloader_1.7-1_all.deb da minha pasta Downloads . Mas acabei de receber os seguintes erros de dependência.

dpkg: dependency problems prevent configuration of googleplaydownloader:
googleplaydownloader depends on python-configparser; however:
Package python-configparser is not installed.
googleplaydownloader depends on python-ndg-httpsclient; however:
Package python-ndg-httpsclient is not installed.
googleplaydownloader depends on python-protobuf (>= 2.4); however:
Package python-protobuf is not installed.
googleplaydownloader depends on python-pyasn1; however:
Package python-pyasn1 is not installed.

dpkg: error processing package googleplaydownloader (--install):
dependency problems - leaving unconfigured
Processing triggers for mime-support (3.54ubuntu1.1) ...
Processing triggers for gnome-menus (3.10.1-0ubuntu2) ...
Processing triggers for desktop-file-utils (0.22-1ubuntu1) ...
Processing triggers for bamfdaemon (0.5.1+14.04.20140409-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Errors were encountered while processing:
googleplaydownloader

Eu tentei usar sudo apt-get -f install . Depois de usá-lo, tentei sudo dkpg -i googleplaydownloader_1.7-1_all.deb mais uma vez. No entanto, eu tenho alguns erros como no seguinte.

Selecting previously unselected package googleplaydownloader.
(Reading database ... 294372 files and directories currently installed.)
Preparing to unpack googleplaydownloader_1.7-1_all.deb ...
Unpacking googleplaydownloader (1.7-1) ...
dpkg: dependency problems prevent configuration of googleplaydownloader:
googleplaydownloader depends on python-ndg-httpsclient; however:
Package python-ndg-httpsclient is not installed.

dpkg: error processing package googleplaydownloader (--install):
dependency problems - leaving unconfigured
Processing triggers for mime-support (3.54ubuntu1.1) ...
Processing triggers for gnome-menus (3.10.1-0ubuntu2) ...
Processing triggers for desktop-file-utils (0.22-1ubuntu1) ...
Processing triggers for bamfdaemon (0.5.1+14.04.20140409-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Errors were encountered while processing:
googleplaydownloader

Ajude-me a superar esses erros e faça uma instalação bem-sucedida do downloader do google play.

Atualização 1:

Eu baixei python-ndg-httpclient de aqui . Eu tentei instalá-lo com este comando: sudo dpkg -i python-ndg-httpsclient_0.3.2-1_all.deb . Desta vez eu encontrei com outro conjunto de problemas de dependência. E eu me pergunto quanto tempo vai durar! A seguir estão os erros.

dpkg: dependency problems prevent configuration of python-ndg-httpsclient:
python-ndg-httpsclient depends on python-support (>= 0.90.0); however:
Package python-support is not installed.

dpkg: error processing package python-ndg-httpsclient (--install):
dependency problems - leaving unconfigured
Errors were encountered while processing:
python-ndg-httpsclient 
    
por Ramvignesh 11.03.2015 / 17:44

2 respostas

2

De baixo para cima!

  1. O python-ndg-httpsclient depende do suporte a python

    • faça o download: link
    • instale: sudo dpkg -i python-support.deb
  2. o googleplaydownloader depende do python-ndg-httpsclient

    • faça o download: link
    • instale: sudo dpkg -i python-ndg-httpsclient.deb
  3. googleplaydownloader finalmente

    • você tem faz o download
    • instale agora: sudo dpkg -i googleplaydownloader_1.7-1_all.deb

Isso e os polegares para cima:)

    
por kevy 11.03.2015 / 18:00
0

Execute o seguinte comando no terminal

sudo apt-get install python-configparser python-protobuf python-pyasn1

Em seguida, instale o python-ndg-httpsclient que você baixou e depois googleplaydownloader_1.7-1_all.deb usando sudo dpkg -i x.deb onde x = nome do pacote

    
por Faizan Akram Dar 11.03.2015 / 18:38