どうも、ちょげ(@chogetarou)です。
ターミナルでPythonのJupyterのバージョンをチェックする方法を紹介します。
方法

ターミナルでPythonのJupyterのバージョンを確認するには、「–version」オプションを使います。
まず、ターミナルを開きます。
そして、「jupyter –version」を入力し、エンターキーを押します。
$ jupyter --version
「jupyter –version」は実行後、Jupyterのコアパッケージのバージョン一覧を出力します。
IPython : 8.3.0
ipykernel : 6.13.0
ipywidgets : 7.7.0
jupyter_client : 7.3.0
jupyter_core : 4.10.0
jupyter_server : not installed
jupyterlab : not installed
nbclient : 0.6.0
nbconvert : 6.5.0
nbformat : 5.3.0
notebook : 6.4.11
qtconsole : 5.3.0
traitlets : 5.1.1
まとめ
「jupyter –version」を実行すれば、ターミナルでPythonのJupyterのバージョンを確認できます。
コメント