欢迎各位兄弟 发布技术文章
这里的技术是共享的
The error message "-bash: pecl: command not found" indicates that the pecl command is not installed on your CentOS 7 system.
To install pecl, you can follow these steps:
Make sure you have the EPEL repository enabled. You can do this by running the following command:
sudo yum install epel-release
Update your system's package manager:
sudo yum update
Install the necessary packages for pecl:
sudo yum install php-pear php-devel
Finally, install pecl using the following command:
sudo pecl install pecl_name
Replace "pecl_name" with the actual name of the package you want to install using pecl.
After successfully installing pecl, you should be able to use the pecl command without any errors.