主要参考教材:ubuntu20.04安装wordpress教程
问题1:
root@racknerd-e7ec47c:~# sudo apt-get install php8.1
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package php8.1
E: Couldn't find any package by glob 'php8.1'
E: Couldn't find any package by regex 'php8.1'
系统的软件源中没有包含要安装的php8.1软件包相关信息
解决方法:
添加包含php8.1的 PPA
sudo add-apt-repository ppa:ondrej/php
sudo apt update
sudo apt install php8.1
问题2:
root@racknerd-e7ec47c:~# sudo add-apt-repository ppa:ondrej/php
sudo: add-apt-repository: command not found
系统中没有安装software-properties-common软件包,而add-apt-repository命令是该软件包的一部分。
解决方法:
安装 software-properties-common:
sudo apt update
sudo apt install software-properties-common