web-dev-qa-db-ja.com

uuid-devのインストールに関する問題

$ Sudo apt-get install uuid-dev
Reading package lists... Done
Building dependency tree       
Reading state information... Done
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:
 uuid-dev : Depends: libuuid1 (= 2.27.1-6ubuntu3) but 2.27.1-6ubuntu3.1 is to be installed
E: Unable to correct problems, you have held broken packages.
2
coronaa

libuuid1バージョンを2.27.1-6ubuntu3.1から2.27.1-6ubuntu3にダウングレードする必要があります。

apt-getを使用してダウングレードを行うことができます。 この回答 を参照してください。

Sudo apt-get install <package-name>=<package-version-number> OR
Sudo apt-get -t=<target release> install <package-name>

synapticパッケージマネージャーを使用している場合は、単にパッケージを選択して(場合によってはlibuuid1を検索して選択し)、メニューに移動することもできます。バージョンを強制..でインストールするバージョンを選択し、Applyをクリックします。

2
Gary Wang

このコマンドを入力して再試行してください

Sudo apt-get install -f
0
Javad Garshasbi