Pythonの整数範囲型(lusbir)を提供する「Lusbir」のインストールについて解説しています。
「Lusbir(https://github.com/shape-warrior-t/lusbir)」は、Pythonにおける整数範囲の別の概念を目的に作られたライブラリです。
■Python
今回のPythonのバージョンは、「3.8.5」を使用しています。(Windows10)(pythonランチャーでの確認)
■Lusbirをインストールする
Lusbirをインストールを行いますが、今回はpipを経由してインストールを行うので、まずWindowsのコマンドプロンプトを起動します。
pip install shape-warrior-t.lusbir
起動後、上記のコマンドを入力し、Enterキーを押します。
なお、今回は、pythonランチャーを使用しており、Python Version 3.8.5にインストールを行うために、バージョンの切り替えを行います。
py -3.8 -m pip install shape-warrior-t.lusbir
切り替えるために、上記のコマンドを入力し、Enterキーを押します。
Defaulting to user installation because normal site-packages is not writeable ERROR: Ignored the following versions that require a different python version: 1.0.0 Requires-Python >=3.10 ERROR: Could not find a version that satisfies the requirement shape-warrior-t.lusbir (from versions: none) ERROR: No matching distribution found for shape-warrior-t.lusbir
Enterキーを押すと、インストールが開始され、上記のように「Successfully installed」と表示されます。これが表示されれば、Lusbirが正常にインストールされたことになりますが、今回は「Ignored the following versions that require a different python version: 1.0.0 Requires-Python >=3.10」というエラーなどが出力されました。この出力を調べてみるとどうやらPython 3.10ではインストールできるようなので、時間のある時に再インストールを試みます。
コメント