Skip to content

Instantly share code, notes, and snippets.

@brunoleles
Last active January 22, 2021 15:06
Show Gist options
  • Save brunoleles/5d87309c36842c201127d2b8234e32a9 to your computer and use it in GitHub Desktop.
Save brunoleles/5d87309c36842c201127d2b8234e32a9 to your computer and use it in GitHub Desktop.
Install PHP 7.1 - Ubuntu

Install PHP 7.1 - Ubuntu

Assumptions

  • Apache2 is already installed

Steps

Adding packages repositories and dependencies

# The original tutorial used this one:
sudo apt-get install -y python-software-properties

# Aparently the above has been obsoleted and we need to use this one:
sudo apt-get install -y software-properties-common
sudo add-apt-repository -y ppa:ondrej/php
sudo apt-get update -y

Checking

This should list some PHP packages

apt-cache pkgnames | grep php7.1

Installing

apt-get install -y php7.1 # and any other package you need

References

https://www.vultr.com/docs/how-to-install-and-configure-php-70-or-php-71-on-ubuntu-16-04

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment