web-dev-qa-db-fra.com

Comment installer bcmath dans Ubuntu pour PHP 7.1

J'utilise un serveur Ubuntu 16 pour tester avec php7.1. Une de mes applications utilise la fonction bcadd. Je sais que je dois installer le module bcmath pour cela mais je ne trouve pas php7.1-bcmath. Quand j'ai essayé d'installer apt install php-bcmath, il a simplement installé php7.0-bcmath module.

Je n'ai pas pu trouver php7.1-bcmath module n'importe où à installer sur mon serveur. Quelqu'un a-t-il une idée?

apt install php7.1-bcmath retourné suivant,

E: Unable to locate package php7.1-bcmath

E: Couldn't find any package by glob 'php7.1-bcmath'

E: Couldn't find any package by regex 'php7.1-bcmath'
9
Vajira Lasantha

Répondre à ma propre question. Géré pour résoudre ce problème avec la mise à jour du référentiel suivante.

add-apt-repository ppa:ondrej/php
apt update
apt install php7.1-bcmath

Redémarrez Apache et tout va bien.

30
Vajira Lasantha

installez ceci: https://packages.ubuntu.com/fr/artful/AMD64/php7.1-bcmath/download

ajoute ça :

deb http://security.ubuntu.com/ubuntu artful-security main universe

à /etc/apt/sources.list

$ Sudo apt update

$ Sudo apt install php7.1-bcmath
6