国際電話番号の解析、保存、検証ができる「python-phonenumbers」のインストールについて解説しています。
「python-phonenumbers(https://github.com/daviddrysdale/python-phonenumbers)」は、Googleの一般的なJava、C ++、およびJavaScriptライブラリを、Pythonライブラリにしたものです。
■Python
今回のPythonのバージョンは、「3.8.5」を使用しています。(Windows10)(pythonランチャーでの確認)
■python-phonenumbersをインストールする
python-phonenumbersをインストールを行いますが、今回はpipを経由してインストールを行うので、まずWindowsのコマンドプロンプトを起動します。
pip install phonenumbers
起動後、上記のコマンドを入力し、Enterキーを押します。
なお、今回は、pythonランチャーを使用しており、Python Version 3.8.5にインストールを行うために、バージョンの切り替えを行います。
py -3.8 -m pip install phonenumbers
切り替えるために、上記のコマンドを入力し、Enterキーを押します。
Defaulting to user installation because normal site-packages is not writeable Collecting phonenumbers Using cached phonenumbers-8.12.49-py2.py3-none-any.whl (2.6 MB) Installing collected packages: phonenumbers Successfully installed phonenumbers-8.12.49
Enterキーを押すと、インストールが開始され、上記のように「Successfully installed」と表示されます。これが表示されれば、phonenumbersが正常にインストールされたことになります。
なお、今回はphonenumbersのバージョン8.12.49をインストールしました。
コメント