0

I've tried to install php7.3-gd for centos7, i got this error

Screenshot error install via repo

said that require gd-last(x86-64), i am confused how to upgrade the gd version to latest version, also I've tried to install via rpm file but got different error message, like this

Screenshot error via rpm file

Anyone can help me out ?

1 Answers1

0

The package gd-last is available in repository remi-safe. As your PHP is already from the Remi repository, you likely have the remi-safe, but it's disabled by default. You can check this using

# yum repolist remi-safe

Then, try and install gd-last and php-gd with

# yum install gd-last --enablerepo="remi-safe"
# yum install php-gd --enablerepo=remi,remi-php73
Esa Jokinen
  • 46,944
  • 3
  • 83
  • 129