web-dev-qa-db-ja.com

Xubuntu 16.04にcurlをインストールするのに助けが必要

入った後

Sudo apt-get install curl

私はメッセージを受け取ります

Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
curl : Depends: libcurl3-gnutls (= 7.47.0-1ubuntu2) but 7.47.0-1ubuntu2.1 is to be installed
E: Unable to correct problems, you have held broken packages.

これが何を意味するのか、それを修正する方法がわからないので、どんな助けでも大歓迎です。

9
zptdmt

指定したlibcurlバージョンをインストールするには、次を使用します。

Sudo apt-get install libcurl3-gnutls=7.47.0-1ubuntu2

そして、カールをインストールします

Sudo apt-get update && Sudo apt-get install curl
11