Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save brighttechnilogy/2ce05bb3877911cdab7f2eb1680e8a7e to your computer and use it in GitHub Desktop.
Save brighttechnilogy/2ce05bb3877911cdab7f2eb1680e8a7e to your computer and use it in GitHub Desktop.
Install PHP (8.2, 8.1, 7.4) on Ubuntu 22.04
sudo apt update && sudo apt upgrade
sudo apt install software-properties-common ca-certificates lsb-release apt-transport-https
LC_ALL=C.UTF-8 sudo add-apt-repository ppa:ondrej/php
sudo apt update
sudo apt install php8.2
# Check active php version php -v
php -v
# Check system php version
php --version
# Change Default PHP Version
sudo update-alternatives --config php
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment