Installer PHP // sur Ubuntu

PHPz
Libérer: 2024-08-20 06:55:31
original
636 Les gens l'ont consulté

Installing PHP /+ on ubuntu

you may be getting error simmilar to

Hit:1 http://ng.archive.ubuntu.com/ubuntu lunar InRelease Hit:2 http://ng.archive.ubuntu.com/ubuntu lunar-updates InRelease Hit:3 https://dl.google.com/linux/chrome/deb stable InRelease Hit:4 http://ng.archive.ubuntu.com/ubuntu lunar-backports InRelease Ign:5 https://ppa.launchpadcontent.net/ondrej/php/ubuntu lunar InRelease Err:6 https://ppa.launchpadcontent.net/ondrej/php/ubuntu lunar Release 404 Not Found [IP: 185.125.190.80 443] Hit:7 http://ng.archive.ubuntu.com/ubuntu lunar-security InRelease Reading package lists... Done E: The repository 'https://ppa.launchpadcontent.net/ondrej/php/ubuntu lunar Release' does not have a Release file. N: Updating from such a repository can't be done securely, and is therefore disabled by default. N: See apt-secure(8) manpage for repository creation and user configuration details. or “Reading package lists… Done Building dependency tree Reading state information… Done E: Unable to locate package php8.2 E: Couldn’t find any package by glob ‘php8.2’ E: Couldn’t find any package by regex ‘php8.2’”
Copier après la connexion

probably after running

add-apt-repository ppa:ondrej/php
Copier après la connexion

remove the previous source by running

sudo add-apt-repository --remove ppa:ondrej/php sudo apt update
Copier après la connexion

You will need to edit your repository source file as follows:

sudo nano /etc/apt/sources.list
Copier après la connexion

and enter

deb https://ppa.launchpadcontent.net/ondrej/php/ubuntu jammy main
Copier après la connexion

then run

sudo apt update
Copier après la connexion

after which you should now be able to install your php version using 8.3 as an example

sudo apt install php8.3
Copier après la connexion

if you already have some other php installed, you may need to change to the version using

sudo update-alternatives --config php
Copier après la connexion

and follow the prompt.

you may also consider installing the following extenstions

sudo apt install php8.3-curl php8.3-gd php8.3-intl php8.3-simplexml php8.3-dom php8.3-mysql php8.3-mbstring php8.3-xml php8.3-gd php8.3-curl php8.3-mysqli php8.3-zip
Copier après la connexion

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

source:dev.to
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!