Composer 需要 PHP iconv 或 mbstring 扩展

Composer 需要 PHP iconv 或 mbstring 扩展

我已经通过“sudo apt install composer”安装了作曲家,安装成功,但是当我尝试运行任何作曲家命令时,例如:“composer -v”,它会在终端上输出此结果。

"The iconv OR mbstring extension is required and both are missing.
Install either of them or recompile php without --disable-iconv.
Aborting."

我正在使用 php 8.1

答案1

您必须安装缺少的扩展:mbstring适合您的 PHP 版本:

apt install php8.1-mbstring

相关内容