web-dev-qa-db-ja.com

Ubuntu 18.04でのphp7.1-Zipインストール

タイトルですでに説明しているように、Ubuntu 18.04でPHP 7.1からZipモジュールをインストールする必要があります。すべてのコマンドを使用するとき

Sudo apt-get install php7.1-Zip

そして次の出力。

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:
 php7.1-Zip : Depends: libzip4 (>= 1.0) but it is not installable
E: Unable to correct problems, you have held broken packages.

インストールしようとしていますlibzip4も機能しません。

Reading package lists... Done
Building dependency tree
Reading state information... Done
Package libzip4 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'libzip4' has no installation candidate

誰かが助けてみてください。残念ながらGoogleも助けにはなりません。

エリアス

3
user3022024

一時的な解決策は、次のような信頼できるソースからパッケージファイルをダウンロードすることです https://packages.ubuntu.com/xenial/libzip4

その後、それをインストールします

dpkg -i libzip4_1.0.1-0ubuntu1_AMD64.deb

そしてその php7.1-Zipは正常にインストールされます。

0
Croll

公式リポジトリを使用してください:

Sudo add-apt-repository universe
Sudo apt update

次に:

Sudo apt install php7.1-Zip
15
Renzo de Sá