Centos 6.8升级PHP 7

Centos 6.8升级PHP 7

我想将我的 VPS 升级到 PHP 7

但我每次都会遇到这个问题

[root@cloudbox75067 /]# yum install php70w php70w-opcache

Loaded plugins: fastestmirror
Setting up Install Process
Loading mirror speeds from cached hostfile
 * base: ftp.nluug.nl
 * epel: fedora.cu.be
 * extras: nl.mirror.babylon.network
 * updates: ftp.nluug.nl
 * webtatic: uk.repo.webtatic.com
Error: xz compression not available

答案1

如果您在计算机上安装了错误的 epel 版本,则会出现此问题。如果是这样,那么您需要通过删除 epel 版本

yum remove epel-release

有时这还不够,您还需要通过以下方式删除缓存:

rm -rf /var/cache/yum/x86_64/6/epel

然后你可以再次安装epel-release

yum -y install epel-release

来源:https://stackoverflow.com/questions/27026003/xz-compression-install-on-centos/31945905#31945905

相关内容