[SOLVED] phpize: command not found in CentOS (6.4)

Aaron Medina
1 min readAug 18, 2017

I was trying to add extensions via pecl and then I encountered phpize: command not found problem.

Solution:

Step 1: Install / update your php-devel

> yum install php-devel*

Step 2: Update pecl channel

> pecl channel-update pecl.php.net

--

--