Não é possível instalar o pgadmin III

2

Eu preciso instalar o pgadmin3 no Ubuntu, mas dá esta mensagem:

west@west-ThinkPad-T510:~$ sudo apt-get install pgadmin3
Reading package lists... Done

Building dependency tree       
Reading state information... Done

Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies.
 pgadmin3 : Depends: libwxbase3.0-0 (>= 3.0.2) but 3.0.0-2 is to be installed
            Depends: libwxgtk3.0-0 (>= 3.0.2) but 3.0.0-2 is to be installed
            Recommends: pgagent but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Eu pesquisei no Google, mas não encontrei uma solução.

    
por guaranito93 30.09.2015 / 23:57

1 resposta

1

Isto é o que eu fiz para finalmente instalar o pgadmin3:

Primeiro, verifiquei a versão disponível no repositório:

apt-cache policy pgadmin3

Em seguida, instalei essa versão (pode mudar no tempo, use a versão apropriada mostrada pelo comando anterior):

sudo apt-get install pgadmin3=1.22.2-1 pgadmin-data=1.22.2-1

Como Elder Geek aponta, você precisa do para ativar o repositório do universo

    
por Paco Abato 29.07.2017 / 17:44