phpize: command not found
Ran into this error (phpize: command not found) while trying to install json extension for PHP.
Here is the solution on CentOS 5/RHEL:
yum install php-devel |
On Debian/Ubuntu:
apt-get install php5-dev |
Viola! Why do you have to install dev tools to use extensions? Dunno. Very irritating. But it solves it with no side effects.
Comments off