The requested dependencies require the php mbstring , as the error explains.
the requested mbstring php extension is missing from your system
So, install the extension and it should be flawless.
mbstring is built into the libapache2-mod-php5 package. Run
sudo apt-get install libapache2-mod-php5
For windowed environments, check php.ini and uncomment the line ;extension=php_mbstring.dll to extension=php_mbstring.dll - then restart the web server.
source share