Não é possível instalar o pacote libnetcdf6 no Ubuntu 14.04

0

Eu gostaria de instalar o pacote libenetcdf6 no Ubuntu 14.04, quando eu instalá-lo, estou incorrendo seguinte erro, por favor deixe-me saber como eu poderia resolver este problema

dpkg: dependency problems prevent configuration of libnetcdf6:
 libnetcdf6 depends on libhdf5-serial-1.8.4 | libhdf5-1.8.4; however:
  Package libhdf5-serial-1.8.4 is not installed.
  Package libhdf5-1.8.4 is not installed.
 libnetcdfc7 (1:4.1.3-7ubuntu2) breaks libnetcdf6 (<< 1:4.1.1-7~) and is installed.
  Version of libnetcdf6 to be configured is 1:4.1.1-6.
 libnetcdfc++4 (1:4.1.3-7ubuntu2) breaks libnetcdf6 (<< 1:4.1.1-7~) and is installed.
  Version of libnetcdf6 to be configured is 1:4.1.1-6.

dpkg: error processing package libnetcdf6 (--install):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 libnetcdf6
    
por DevanDevak 19.08.2016 / 13:10

2 respostas

0

No seu terminal ( Ctrl + Alt + T ), execute o seguinte comando após o comando dpkg para instalar as dependências:

sudo apt-get -f install
    
por Sujeet Sinha 19.08.2016 / 14:36
0

Existem pacotes que precisam ser atualizados? Em caso afirmativo, faça o seguinte primeiro e tente novamente.

sudo apt-get update        # Fetches the list of available updates
sudo apt-get upgrade       # Strictly upgrades the current packages
sudo apt-get dist-upgrade  # Installs updates (new ones)
    
por Moebuntu 19.08.2016 / 13:33