Install Php8 On Linux

[Solved] Install Php8 On Linux | Shell - Code Explorer | yomemimo.com
Question : install php8.1

Answered by : patrick-aziken

#First perform and apt update
sudo apt update && sudo apt upgrade -y
#Install dependencies
sudo apt install software-properties-common apt-transport-https -y
#Add the PPA
sudo add-apt-repository ppa:ondrej/php -y
#Now to install PHP 8.1 FPM and it's modules
sudo apt install php8.1-fpm php8.1-common php8.1-mysql php8.1-xml php8.1-xmlrpc php8.1-curl php8.1-gd php8.1-imagick php8.1-cli php8.1-dev php8.1-imap php8.1-mbstring php8.1-opcache php8.1-soap php8.1-zip php8.1-intl php8.1-bcmath

Source : | Last Update : Sat, 21 May 22

Question : install php8

Answered by : lennox-omondi

sudo add-apt-repository ppa:ondrej/php
sudo apt install php8.0
#Add composer
sudo apt-get install curl
sudo curl -s https://getcomposer.org/installer | php
sudo mv composer.phar /usr/local/bin/composer
composer -v

Source : | Last Update : Wed, 13 Apr 22

Question : install php8.2 ubuntu

Answered by : you

sudo apt update
sudo apt install software-properties-common
sudo add-apt-repository ppa:ondrej/php
sudo apt update
sudo apt install php8.2

Source : | Last Update : Tue, 19 Sep 23

Answers related to install php8 on linux

Code Explorer Popular Question For Shell