web-dev-qa-db-ja.com

ubuntuに何かをインストールする際に問題が発生しています:処理中にエラーが発生しました:kexi

Ubuntu 18.04には何もインストールできません。このエラーメッセージは常にErrors were encountered while processing:kexiで表示されます。私が試してみました、

Sudo apt install kexi
Sudo apt-get dist-upgrade   
Sudo dpkg -a --configure

完全なエラー出力は次のとおりです

dpkg: error processing package kexi (--configure):
 package is in a very bad inconsistent state; you should
 reinstall it before attempting configuration
Errors were encountered while processing:
 kexi
E: Sub-process /usr/bin/dpkg returned an error code (1)
3
mecofe

エラーメッセージを読むことから始めます。基本的に、何をする必要があるかがわかります。

dpkg: error processing package kexi (--configure):
  package is in a very bad inconsistent state; you should
  reinstall it before attempting configuration

つまり、再インストールする必要があります。したがって、kexiを再インストールすると、その問題が修正されます。

Sudo apt install --reinstall kexi
2
Thomas Ward