web-dev-qa-db-ja.com

Telegramアプリを18.04にインストールするにはどうすればよいですか?

テレグラムをインストールしようとすると、次のエラーが発生します。

itsmarttricks@mangesh:~$ Sudo apt-get install telegram
Reading package lists... Done
Building dependency tree       
Reading state information... Done
You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies:
 libreoffice-core : Depends: libreoffice-common (> 1:6.2.2) but it is not going to be installed
 libreoffice-Java-common : Depends: libreoffice-common (= 1:6.2.2-0ubuntu0.18.04.1~lo1) but it is not going to be installed
 libreoffice-report-builder : Depends: libreoffice-common (= 1:6.2.2-0ubuntu0.18.04.1~lo1) but it is not going to be installed
 libreoffice-script-provider-bsh : Depends: libreoffice-common (= 1:6.2.2-0ubuntu0.18.04.1~lo1) but it is not going to be installed
 libreoffice-script-provider-js : Depends: libreoffice-common (= 1:6.2.2-0ubuntu0.18.04.1~lo1) but it is not going to be installed
 libreoffice-script-provider-python : Depends: libreoffice-common (= 1:6.2.2-0ubuntu0.18.04.1~lo1) but it is not going to be installed
 libreoffice-style-colibre : Depends: libreoffice-common (= 1:6.2.2-0ubuntu0.18.04.1~lo1) but it is not going to be installed
 libreoffice-style-elementary : Depends: libreoffice-common (= 1:6.2.2-0ubuntu0.18.04.1~lo1) but it is not going to be installed
 libreoffice-style-tango : Depends: libreoffice-common (= 1:6.2.2-0ubuntu0.18.04.1~lo1) but it is not going to be installed
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).
5

LibreOfficeがインストールされているようですが、なんとかしてインストールを中断できました。それを修正するには、次を試してください:

Sudo apt-mark auto libreoffice-common

古いバージョンのapt-get(11.somethingより前だと思います。Ubuntu18.04のバージョンよりもかなり前です)、これは機能しません。代わりに試してください:

Sudo apt-get markauto libreoffice-common

そして、すぐにパッケージマネージャーを更新します。

これらのコマンドのいずれかを実行した後、次を実行します。

Sudo apt install

(おもう。)

1
wizzwizz4