web-dev-qa-db-fra.com

Le package 'php5-Gd' n'a pas de candidat à l'installation

"Module PHP Gd: manquant" J'ai reçu une telle erreur. et j'essaye d'installer php5-Gd.

apt-get install php5-Gd

J'utilise Ubuntu 16.10 et PHP version 7. J'ai effectué toutes les mises à jour.

Quand j'ai essayé d'installer php5-Gd, j'ai eu une erreur comme ci-dessous.

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package php5-Gd 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 'php5-Gd' has no installation candidate
8
Hakan san

Commencez par vérifier quelle version de php vous avez par Sudo php -v. J'ai php7 donc le résultat est:

PHP 7.0.18-0ubuntu0.17.04.1 (cli) (built: Apr 26 2017 23:59:48) ( NTS )
Copyright (c) 1997-2017 The PHP Group
Zend Engine v3.0.0, Copyright (c) 1998-2017 Zend Technologies
with Zend OPcache v7.0.18-0ubuntu0.17.04.1, Copyright (c) 1999-2017, by Zend Technologies

depuis que j'ai php7, je vais faire ce qui suit pour lister les paquets php

Sudo apt-cache search php7-* 

cela est revenu

libapache2-mod-php7.0 - server-side, HTML-embedded scripting language (Apache 2 module)
php-all-dev - package depending on all supported PHP development packages
php7.0 - server-side, HTML-embedded scripting language (metapackage)
php7.0-cgi - server-side, HTML-embedded scripting language (CGI binary)
php7.0-cli - command-line interpreter for the PHP scripting language
php7.0-common - documentation, examples and common module for PHP
php7.0-curl - CURL module for PHP
php7.0-dev - Files for PHP7.0 module development
php7.0-Gd - Gd module for PHP
php7.0-gmp - GMP module for PHP
php7.0-json - JSON module for PHP
php7.0-ldap - LDAP module for PHP
php7.0-mysql - MySQL module for PHP
php7.0-odbc - ODBC module for PHP
php7.0-opcache - Zend OpCache module for PHP
php7.0-pgsql - PostgreSQL module for PHP
php7.0-pspell - pspell module for PHP
php7.0-readline - readline module for PHP
php7.0-recode - recode module for PHP
php7.0-snmp - SNMP module for PHP
php7.0-sqlite3 - SQLite3 module for PHP
php7.0-tidy - tidy module for PHP
php7.0-xml - DOM, SimpleXML, WDDX, XML, and XSL module for PHP
php7.0-xmlrpc - XMLRPC-EPI module for PHP
libphp7.0-embed - HTML-embedded scripting language (Embedded SAPI library)
php-amqp - AMQP extension for PHP
php-apcu - APC User Cache for PHP
php-gearman - PHP wrapper to libgearman
php-geoip - GeoIP module for PHP
php-gmagick - Provides a wrapper to the GraphicsMagick library
php-gnupg - PHP wrapper around the gpgme library
php-http - PECL HTTP module for PHP Extended HTTP Support
php-igbinary - igbinary PHP serializer
php-imagick - Provides a wrapper to the ImageMagick library
php-libsodium - PHP wrapper for the Sodium cryptographic library
php-mailparse - Email message manipulation for PHP
php-memcache - memcache extension module for PHP
php-memcached - memcached extension module for PHP, uses libmemcached
php-mongodb - MongoDB driver for PHP
php-msgpack - PHP extension for interfacing with MessagePack
php-oauth - OAuth 1.0 consumer and provider extension
php-pinba - Pinba module for PHP
...and do on

maintenant, pour installer des packages, exécutez la commande suivante avec votre package souhaité

Sudo apt-get install php7.0-mysql php7.0-Gd php7.0-curl php7.0-recode

remarque: php7.0-mysql php7.0-Gd php7.0-curl php7.0-recode correspond au package répertorié ci-dessus.

METTRE À JOUR

n'oubliez pas de redémarrer Apache Sudo service Apache2 reload

6
Regolith

Vous pouvez utiliser le méta-paclaget php-Gd, qui est un alias de php7.0-Gd

Sudo apt-get install php-Gd
1
Oliver

vous avez php7 installé mais vous essayez d'installer un paquet de php5 qui pose problème

0
Nithees balaji