ubuntu20.04搭建wordpress时出现问题汇总
主要参考教材: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
原文地址:https://blog.csdn.net/m0_46606108/article/details/145298976
免责声明:本站文章内容转载自网络资源,如侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!