Alright, to use Blocktrail's API, I'm trying to install the gmp package of php using this command :-
yum install php5-gmp
This results to :-
[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
I've tried many solutions online, but all have failed. What am I doing wrong here?
CentOS Version :- CentOS7.0-64 LAMP for VSI
PHP Version :- PHP 5.5.37
The yum repositories on your system don't have the package to install. You'll need to find another repo which has the package and add it to your system or try downloading an rpm and installing it that way, such as from here:
https://www.rpmfind.net/linux/rpm2html/search.php?query=php5-gmp(x86-32)
New repos can be saved in /etc/yum.repos.d/reponame.repo and should look like below:
[examplerepo]
name=Example Repository
baseurl=http://mirror.cisp.com/CentOS/6/os/i386/
enabled=1
gpgcheck=0