好了,要使用Blocktrail的API,我正在尝试使用以下命令安装php的gmp软件包:

yum install php5-gmp


结果是:-

[root@dsfx ~]# yum install php5-gmp
Loaded plugins: fastestmirror, security
Setting up Install Process
Loading mirror speeds from cached hostfile
 * rpmforge: mirror.de.leaseweb.net
No package php5-gmp available.
Error: Nothing to do


我已经在线尝试了许多解决方案,但都失败了。
我在这里做错了什么?

CentOS版本:-用于VSI的CentOS7.0-64 LAMP

PHP版本:-PHP 5.5.37

最佳答案

您系统上的yum存储库没有要安装的软件包。您需要找到另一个包含该软件包的仓库,并将其添加到系统中,或者尝试下载rpm并以这种方式安装,例如从这里:

https://www.rpmfind.net/linux/rpm2html/search.php?query=php5-gmp(x86-32)

新的回购协议可以保存在/etc/yum.repos.d/reponame.repo中,如下所示:

[examplerepo]
name=Example Repository
baseurl=http://mirror.cisp.com/CentOS/6/os/i386/
enabled=1
gpgcheck=0

关于php - 没有可用的php5-gmp软件包,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38382528/

10-13 07:30