郵便番号からGPS座標などをクエリするライブラリ「pgeocode」のインストールについて解説しています。
「pgeocode(https://pgeocode.readthedocs.io/en/latest/overview.html)」は、郵便番号から GPS 座標、地域名、自治体名をオフラインでクエリできるライブラリです。郵便番号間の距離や一般的な距離クエリも対応しています。なお、Pythonのバージョン3.8以上でのインストールが必要となります。
■Python
今回のPythonのバージョンは、「3.9.9」を使用しています。(Windows11)(pythonランチャーでの確認)
■pgeocodeをインストールする
pgeocodeをインストールを行いますが、今回はpipを経由してインストールを行うので、まずWindowsのコマンドプロンプトを起動します。
pip install pgeocode
起動後、上記のコマンドを入力し、Enterキーを押します。
なお、今回は、pythonランチャーを使用しており、Python Version 3.9.9にインストールを行うために、バージョンの切り替えを行います。
py -3.9 -m pip install pgeocode
切り替えるために、上記のコマンドを入力し、Enterキーを押します。
Defaulting to user installation because normal site-packages is not writeable Collecting pgeocode Downloading pgeocode-0.4.0-py3-none-any.whl (9.7 kB) Collecting pandas Using cached pandas-2.0.3-cp39-cp39-win_amd64.whl (10.8 MB) Requirement already satisfied: requests in c:\users\user_\appdata\roaming\python\python39\site-packages (from pgeocode) (2.31.0) Collecting numpy Downloading numpy-1.25.2-cp39-cp39-win_amd64.whl (15.6 MB) |████████████████████████████████| 15.6 MB 67 kB/s Collecting pytz>=2020.1 Using cached pytz-2023.3-py2.py3-none-any.whl (502 kB) Collecting tzdata>=2022.1 Using cached tzdata-2023.3-py2.py3-none-any.whl (341 kB) Collecting python-dateutil>=2.8.2 Using cached python_dateutil-2.8.2-py2.py3-none-any.whl (247 kB) Requirement already satisfied: six>=1.5 in c:\users\user_\appdata\roaming\python\python39\site-packages (from python-dateutil>=2.8.2->pandas->pgeocode) (1.16.0) Requirement already satisfied: idna<4,>=2.5 in c:\users\user_\appdata\roaming\python\python39\site-packages (from requests->pgeocode) (3.4) Requirement already satisfied: urllib3<3,>=1.21.1 in c:\users\user_\appdata\roaming\python\python39\site-packages (from requests->pgeocode) (2.0.4) Requirement already satisfied: charset-normalizer<4,>=2 in c:\users\user_\appdata\roaming\python\python39\site-packages (from requests->pgeocode) (3.2.0) Requirement already satisfied: certifi>=2017.4.17 in c:\users\user_\appdata\roaming\python\python39\site-packages (from requests->pgeocode) (2023.7.22) Installing collected packages: tzdata, pytz, python-dateutil, numpy, pandas, pgeocode WARNING: The script f2py.exe is installed in 'C:\Users\user_\AppData\Roaming\Python\Python39\Scripts' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. Successfully installed numpy-1.25.2 pandas-2.0.3 pgeocode-0.4.0 python-dateutil-2.8.2 pytz-2023.3 tzdata-2023.3 WARNING: You are using pip version 21.2.4; however, version 23.2.1 is available. You should consider upgrading via the 'C:\Program Files\Python39\python.exe -m pip install --upgrade pip' command.
Enterキーを押すと、インストールが開始され、上記のように「Successfully installed」と表示されます。これが表示されれば、pgeocodeが正常にインストールされたことになりますが、「WARNING」と表示されました。「WARNING」はエラーではなく警告で、インストールは行われているので、今回は一旦無視しています。
なお、今回はpgeocodeのバージョン0.4.0をインストールしました。
コメント