php 无法下载RemiRepo for CentOs 8

4uqofj5v  于 2023-04-04  发布在  PHP
关注(0)|答案(2)|浏览(370)

我遇到的麻烦,当我尝试安装Remi仓库下载php.当我使用命令:

dnf install https://rpms.remirepo.net/enterprise/remi-release-8.rpm

我有一个错误:

Error: 
 Problem: conflicting requests
  - nothing provides redhat-release >= 8.6 needed by remi-release-8.6-1.el8.remi.noarch
(try to add '--skip-broken' to skip uninstallable packages or '--nobest' to use not only best candidate packages)

我做错了什么?谢谢你的帮助!

cuxqih21

cuxqih211#

正如错误消息所解释的,您需要CentOS〉= 8.6才能利用“remi”存储库。
提醒,CentOS 8最新版本是8.5,但不再支持,您必须切换到替代版本:

  • CentOS 8流,参见how to switch
  • RHEL 8(可免费订阅)
  • 阿尔马Linux
  • Rocky Linux
  • 或其他RHEL克隆
vpfxa7rd

vpfxa7rd2#

我做了以下步骤来升级我的CentOS。

dnf -y install centos-release-stream
dnf -y swap centos-{linux,stream}-repos
dnf -y distro-sync

相关问题