centOS 7 无法安装 php-mbstring 扩展

2022-01-13 00:00:00 installation centos php mbstring unix

我已尝试安装扩展 mbstring,但出现以下错误:

i've tried to install the extension mbstring but i have the following error:

    Error: Package: php-mbstring-5.4.16-23.el7_0.3.x86_64 (updates)
        Requires: php-common(x86-64) = 5.4.16-23.el7_0.3
        Installed: php-common-5.4.38-1.el7.remi.x86_64 (@remi)
        php-common(x86-64) = 5.4.38-1.el7.remi
        Available: php-common-5.4.16-21.el7.x86_64 (base)
        php-common(x86-64) = 5.4.16-21.el7
        Available: php-common-5.4.16-23.el7_0.x86_64 (updates)
        php-common(x86-64) = 5.4.16-23.el7_0
        Available: php-common-5.4.16-23.el7_0.1.x86_64 (updates)
        php-common(x86-64) = 5.4.16-23.el7_0.1
        Available: php-common-5.4.16-23.el7_0.3.x86_64 (updates)
        php-common(x86-64) = 5.4.16-23.el7_0.3
    You could try using --skip-broken to work around the problem
    You could try running: rpm -Va --nofiles --nodigest

我能做些什么来解决这个问题?

What could i do to resolve the problem ?

感谢您的帮助

推荐答案

对于想知道如何解决这个问题的人:

For people who want to know how to solve this :

sudo yum remove php-common

那么你可以:

sudo yum install php-mbstring

它会自动安装依赖项(php-common)

It will automaticcaly install dependecies (php-common)

相关文章