I want to install PHP 7.3 on Ubuntu 20.04 for my Nginx web server, when I try to install the 7.4 version everything is fine but for 7.3 I get the following error:
E: Unable to locate package php7.3
Then, I run the commands below:
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt-get install -y php7.3
But, again, it shows that it can't locate the package. Does Ubuntu 20.04 support PHP 7.3 or below and if it does, what's wrong with my installation procedure?