He estado intentando instalar PostgreSQL en mi máquina Ubuntu. Termino recibiendo este error.
postgresql : Depends: postgresql-9.3 but it is not going to be installed
postgresql-contrib : Depends: postgresql-contrib-9.3 but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
He intentado sudo apt-get update && apt-get upgrade
e instalarlo a través del comando.
sudo apt-get install postgresql-9.3 postgresql-contrib-9.3
Pero obtengo el mismo error. ¿Alguien me puede ayudar?
linux
ubuntu
installation
postgresql
Principiante
fuente
fuente
Respuestas:
El problema fue que instalé postgres-xc y lo desinstalé. Pero no se desinstaló correctamente. Finalmente desinstalé completamente postgres-xc y psotgres-client haciendo esto.
sudo gedit / var / lib / dpkg / status
Después de esto instalé postgresql usando
sudo apt-get install postgresql-9.3 postgresql-contrib-9.3
Funcionó: D
fuente
Un método simple hubiera sido ejecutar un indigente para eliminar postgres. Aptitude hace la eliminación y se asegura de que no haya paquetes rotos.
fuente