反復可能オブジェクトを操作するitertoolを超えた「more-itertools」のインストールについて解説しています。
「more-itertools(https://github.com/more-itertools/more-itertools)」は、Pythonのitertoolsライブラリが提供する関数を使用して、さまざまな問題に対する洗練されたソリューションを作成できるライブラリです。
■Python
今回のPythonのバージョンは、「3.10.9」を使用しています。(Windows11)(pythonランチャーでの確認)
■more-itertoolsをインストールする
more-itertoolsをインストールを行いますが、今回はpipを経由してインストールを行うので、まずWindowsのコマンドプロンプトを起動します。
pip install more-itertools
起動後、上記のコマンドを入力し、Enterキーを押します。
なお、今回は、pythonランチャーを使用しており、Python Version 3.10.9にインストールを行うために、バージョンの切り替えを行います。
py -3.10 -m pip install more-itertools
切り替えるために、上記のコマンドを入力し、Enterキーを押します。
Defaulting to user installation because normal site-packages is not writeable Collecting more-itertools Downloading more_itertools-10.1.0-py3-none-any.whl (55 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 55.8/55.8 kB 735.2 kB/s eta 0:00:00 Installing collected packages: more-itertools Successfully installed more-itertools-10.1.0
Enterキーを押すと、インストールが開始され、上記のように「Successfully installed」と表示されます。これが表示されれば、more-itertoolsが正常にインストールされたことになります。
なお、今回はmore-itertoolsのバージョン10.1.0をインストールしました。
コメント