Ubuntu kann PHP5 nicht installieren, da es in der offiziellen Softwarebibliothek von Ubuntu 16.04 kein PHP5 gibt, sondern nur PHP7. Die Lösung besteht darin, 14.04 zu installieren oder PPA zu verwenden.
Die Betriebsumgebung dieses Artikels: Ubuntu16.04-System, PHP5-Version, DELL G3-Computer
Lösung für das Problem, dass PHP5 unter Ubuntu16.04 nicht installiert werden kann
Da das vorherige Projekt geschrieben wurde PHP5, ich möchte es bereitstellen. Beim Upgrade auf das Ubuntu16.04-System müssen Sie die PHP5-Version installieren. Nachdem Sie den folgenden Befehl ausgeführt haben, wird die folgende Eingabeaufforderung angezeigt:
lhs@taing:/var/www/html$ sudo apt-get install php5 Reading package lists... Done Building dependency tree Reading state information... Done Package php5 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' has no installation candidate lhs@taing:/var/www/html$ sudo apt-get install libapache2-mod-php5 Reading package lists... Done Building dependency tree... 50% Building dependency tree Reading state information... Done Package libapache2-mod-php5 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 'libapache2-mod-php5' has no installation candidate
Der Grund für diese Fehlermeldung ist, dass es keine gibt php5 in der offiziellen Softwarebibliothek 16.04, und nur php7 ist im Lieferumfang enthalten. Wenn Sie PHP5 installieren möchten, müssen Sie 14.04 installieren oder PPA verwenden.
【Empfohlenes Lernen: PHP-Video-Tutorial】
Das obige ist der detaillierte Inhalt vonWas soll ich tun, wenn Ubuntu PHP5 nicht installieren kann?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!