URLの解析と操作を簡単にする「furl」のインストールについて解説しています。
「furl(https://github.com/gruns/furl)」は、URLの解析と操作が簡単になるライブラリです。
■Python
今回のPythonのバージョンは、「3.8.5」を使用しています。(Windows10)(pythonランチャーでの確認)
■furlをインストールする
furlをインストールを行いますが、今回はpipを経由してインストールを行うので、まずWindowsのコマンドプロンプトを起動します。
pip install furl
起動後、上記のコマンドを入力し、Enterキーを押します。
なお、今回は、pythonランチャーを使用しており、Python Version 3.8.5にインストールを行うために、pipを使う場合にはコマンドでの切り替えを行います。
py -3.8 -m pip install furl
切り替えるために、上記のコマンドを入力し、Enterキーを押します。
Defaulting to user installation because normal site-packages is not writeable Collecting furl Downloading furl-2.1.3-py2.py3-none-any.whl (20 kB) Requirement already satisfied: six>=1.8.0 in c:\users\user_\appdata\roaming\python\python38\site-packages (from furl) (1.15.0) Collecting orderedmultidict>=1.0.1 Downloading orderedmultidict-1.0.1-py2.py3-none-any.whl (11 kB) Installing collected packages: orderedmultidict, furl Successfully installed furl-2.1.3 orderedmultidict-1.0.1
Enterキーを押すと、インストールが開始され、上記のように「Successfully installed」と表示されます。これが表示されれば、furlが正常にインストールされたことになります。
なお、今回はfurlのバージョン2.1.3をインストールしました。
コメント