John Davidson

ubuntu - E: Couldn't find any package by glob 'php-7.4'

0 comments
Message:


I am using Ubuntu 22.04.1
I am having issues with php version's installation Specially php7.4.


I have tried with these reference but it did't work for me.


https://www.linuxcapable.com/how-to-install-php-7-4-on-ubuntu-20-04-lts/


How can I install php7.4 on Ubuntu 19.04?


https://www.codegrepper.com/code-examples/php/%3A+Unable+to+locate+package+php7.4-fpm


Please help !!!
Thanks.



My Answer:
It seems like the package for PHP 7.4 may not be available in the default repositories for Ubuntu 22.04.1. You can try adding a PPA (Personal Package Archive) that contains PHP 7.4 or higher versions.

Here's how you can add a PPA and install PHP 7.4 on Ubuntu 22.04.1:

1. Add the Ondřej Surý PPA which contains the latest versions of PHP:

sudo add-apt-repository ppa:ondrej/php


2. Update the package list:

sudo apt update


3. Install PHP 7.4 and common extensions:

sudo apt install php7.4 php7.4-common php7.4-cli


4. You can also install additional PHP extensions as needed:

sudo apt install php7.4-


5. Verify the installation by checking the PHP version:

php -v


This should help you install PHP 7.4 on Ubuntu 22.04.1. Let me know if you encounter any issues during the installation process.

Rate this post

3 of 5 based on 5543 votes

Comments




© 2024 Hayatsk.info - Personal Blogs Platform. All Rights Reserved.
Create blog  |  Privacy Policy  |  Terms & Conditions  |  Contact Us