Pythonコードをデバッグするのを楽にするライブラリ「icecream」のインストールについて解説しています。
「icecream(https://github.com/gruns/icecream)」は、コードをデバッグするためにprint()関数を使用せずに、IceCream (略して”ic”)を利用すると、デバッグが楽になるライブラリです。
■Python
今回のPythonのバージョンは、「3.9.9」を使用しています。(Windows11)(pythonランチャーでの確認)
■IceCreamをインストールする
IceCreamをインストールを行いますが、今回はpipを経由してインストールを行うので、まずWindowsのコマンドプロンプトを起動します。
pip install icecream
起動後、上記のコマンドを入力し、Enterキーを押します。
なお、今回は、pythonランチャーを使用しており、Python Version 3.9.9にインストールを行うために、バージョンの切り替えを行います。
py -3.9 -m pip install icecream
切り替えるために、上記のコマンドを入力し、Enterキーを押します。
Defaulting to user installation because normal site-packages is not writeable Collecting icecream Downloading icecream-2.1.3-py2.py3-none-any.whl (8.4 kB) Collecting asttokens>=2.0.1 Using cached asttokens-2.2.1-py2.py3-none-any.whl (26 kB) Collecting executing>=0.3.1 Using cached executing-1.2.0-py2.py3-none-any.whl (24 kB) Collecting pygments>=2.2.0 Downloading Pygments-2.16.1-py3-none-any.whl (1.2 MB) |████████████████████████████████| 1.2 MB 1.3 MB/s Collecting colorama>=0.3.9 Using cached colorama-0.4.6-py2.py3-none-any.whl (25 kB) Collecting six Using cached six-1.16.0-py2.py3-none-any.whl (11 kB) Installing collected packages: six, pygments, executing, colorama, asttokens, icecream WARNING: The script pygmentize.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 asttokens-2.2.1 colorama-0.4.6 executing-1.2.0 icecream-2.1.3 pygments-2.16.1 six-1.16.0 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」と表示されます。これが表示されれば、IceCreamが正常にインストールされたことになりますが、「WARNING」と表示されました。「WARNING」はエラーではなく警告で、インストールは行われているので、今回は一旦無視しています。
なお、今回はIceCreamのバージョン2.1.3をインストールしました。
コメント