web-dev-qa-db-fra.com

installation de php7.1-Zip sous Ubuntu 18.04

comme le titre le dit déjà, il me faut installer le module Zip à partir de PHP 7.1 sous Ubuntu 18.04 Quand chaque fois que j'utilise la commande 

Sudo apt-get install php7.1-Zip

et la sortie suivante.

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.

Essayer d'installer libzip4 ne fonctionne pas non plus. 

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

Quelqu'un peut-il s'il vous plaît essayer d'aider. Malheureusement, Google n’aide pas non plus.

Elias

2
user3022024

Une solution temporaire consiste simplement à télécharger le fichier de package à partir d'une source approuvée telle que: https://packages.ubuntu.com/xenial/libzip4

Ensuite, installez-le avec: dpkg -i libzip4_1.0.1-0ubuntu1_AMD64.deb

Et le php7.1-Zip s'installera normalement.

0
Croll

Utilisez le référentiel officiel:

Sudo add-apt-repository universe
Sudo apt update

puis:

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