Package php7.2-mbstring missing in Ubuntu 18.04

21,705

Enabling the universe repository:

sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe"

helped me installing (php7.1-mbstring):

sudo apt-get install php7.1-mbstring

Thanks for jdtech and Ubuntu

Share:
21,705

Related videos on Youtube

Socrates
Author by

Socrates

Updated on September 18, 2022

Comments

  • Socrates
    Socrates over 1 year

    I am trying to find a way to install php7.2-mbstring into Ubuntu 18.04, but I can't find find it. sudo apt-get install php7.2-mbstring responds with not finding it. According to the Cannonical and the Debian site, this packet exists though.

    Is there any special thing to do to get this package?

    • jdtech
      jdtech almost 6 years
      Did you enable the universe repository? Enable it by: sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe"
    • Socrates
      Socrates almost 6 years
      @jdtech That was it! Installed the package. Thanks a lot for the quick response!
    • TiloBunt
      TiloBunt over 5 years
      anything else you needed to do? I got issues on 18.04.1 askubuntu.com/q/1062160/37213