Comment installer PHP 8.0 sur Linux Ubuntu et Debian
- Neo's calling
- 2 mai 2022
- 1 min de lecture
Mettre le système à jour :
apt updateInstallation sur Ubuntu
apt install ca-certificates apt-transport-https software-properties-commonadd-apt-repository ppa:ondrej/phpapt updateapt install php8.0Installation sur Debian
apt install apt-transport-https lsb-release ca-certificateswget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpgecho "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.listapt updateapt install php8.0apt install php8.0-fpm

Commentaires