Skip to content

Instantly share code, notes, and snippets.

@xZero707
Created February 18, 2020 08:56
Show Gist options
  • Save xZero707/a2f8ba629b4d16907c7a4143bb4edbf5 to your computer and use it in GitHub Desktop.
Save xZero707/a2f8ba629b4d16907c7a4143bb4edbf5 to your computer and use it in GitHub Desktop.
Install PHP on Ubuntu 18.04 from ppa:ondrej/php
# This will install PHP with enough extensions to be able to run most of the applications
# More might be needed depending of your app.
sudo add-apt-repository ppa:ondrej/php
sudo apt update
# Replace php7.4 with your arbitary version, eg. php7.1
sudo apt -y install php7.4 php7.4-{common,json,cli,curl,gd,mysqli,mysqlnd,intl,imagick,gettext,sqlite,apcu,xmlwriter,simplexml}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment