0

I'm trying to install the php7.3-gd extension.

When I try to: sudo apt-get install -y php7.3-gd

I recieve the output:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package php7.3-gd
E: Couldn't find any package by glob 'php7.3-gd'
E: Couldn't find any package by regex 'php7.3-gd'

I tried to update my repo using the following awnser but to no avail.

Edit: I'm on ubuntu 19.08

John Schmitz
  • 108
  • 1
  • 10

1 Answers1

0

php7.3-gd is available on Ubuntu 19.10.

First, you need upgrade your ubuntu to 19.10:

sudo do-release-upgrade -d

And then you can install it:

sudo apt install php7.3-gd
Calos
  • 1,783
  • 19
  • 28