Abra seu terminal ( CTRL + ALT + T ) e cole como
sudo dpkg --force-overwrite /var/cache/apt/archives/libhdf5-serial-dev_1.8.4-patch1-3ubuntu2_i386.deb
Estou tentando instalar o pacote: libhdf5-serial-dev usando o seguinte comando terminal:
sudo apt-get install libhdf5-serial-dev
Isso me dá a seguinte saída:
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following NEW packages will be installed
libhdf5-serial-dev
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/2,126 kB of archives.
After this operation, 14.2 MB of additional disk space will be used.
(Reading database ... 186283 files and directories currently installed.)
Unpacking libhdf5-serial-dev (from .../libhdf5-serial-dev_1.8.4-patch1-3ubuntu2_i386.deb) ...
dpkg: error processing /var/cache/apt/archives/libhdf5-serial-dev_1.8.4-patch1-3ubuntu2_i386.deb (--unpack):
trying to overwrite '/usr/include/hdf5.h', which is also in package hdf5 1.8.12-2
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Errors were encountered while processing:
/var/cache/apt/archives/libhdf5-serial-dev_1.8.4-patch1-3ubuntu2_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
Um post semelhante no askubuntu foi corrigido usando um comando do formulário:
sudo dpkg -r libhdf5-serial-dev_1.8.4-patch1-3ubuntu2_i386
mas isso me dá o erro:
dpkg: warning: there's no installed package matching libhdf5-serial-dev_1.8.4-patch1-3ubuntu2_i386
Eu esperava que alguém pudesse explicar a origem do erro inicial e sugerir uma correção.
Abra seu terminal ( CTRL + ALT + T ) e cole como
sudo dpkg --force-overwrite /var/cache/apt/archives/libhdf5-serial-dev_1.8.4-patch1-3ubuntu2_i386.deb
tentando sobrescrever '/usr/include/hdf5.h', que também está no pacote hdf5 1.8.12-2
O nome do pacote é hdf5
. Você o remove e tudo ficará bem de novo:
sudo dpkg -r hdf5
Continue.
Tags apt package-management