Ubuntu PHP bcmath Extension Install Commands Example

By Hardik Savani November 5, 2023 Category : Ubuntu

Hello Developer,

This simple article demonstrates of how to install php bcmath extension in ubuntu. I explained simply about ubuntu php install bcmath extension. If you have a question about install php bcmath extension ubuntu 20.04 then I will give a simple example with a solution. you can see install php bcmath extension ubuntu. Here, Create a basic example of ubuntu install php bcmath extension.

We can install php bcmath extension using php-bcmath library. i will give you following list of commands to install php bcmath extension in ubuntu 22.10, ubuntu 22.04, ubuntu 21.10, ubuntu 21.04, ubuntu 20.04, ubuntu 18.04 and ubuntu 16.04 server.

Update Ubuntu Package:

You need to run both commands one by one:

sudo add-apt-repository ppa:ondrej/php

sudo apt update

Install php-bcmath Extension:

Solution:

You need to run both commands one by one:

sudo apt-get install php-bcmath

Solution for PHP 8.2

You need to run both command one by one:

sudo apt-get install php8.2-bcmath

Solution for PHP 8.1

You need to run both command one by one:

sudo apt-get install php8.1-bcmath

Solution for PHP 8.0

You need to run both command one by one:

sudo apt-get install php8.0-bcmath

Solution for PHP 7.4

You need to run both command one by one:

sudo apt-get install php7.4-bcmath

Solution for PHP 7.3

You need to run both command one by one:

sudo apt-get install php7.3-bcmath

Solution for PHP 7.2

You need to run both command one by one:

sudo apt-get install php7.2-bcmath

Restart Apache Server:

Now, restart apache2 server using following command:

sudo service apache2 restart

Check php-bcmath Extension Installed:

Here, we will run following command to check extension is installed or not:

php -m | grep -i bcmath

Output:

I hope it can help you...

Tags :
Shares