LoginSignup
0
0

More than 1 year has passed since last update.

[備忘録]ターミナルからJupyter を立ち上げる手順

Posted at

AnacondaからJupyteを立ち上げていた。
直接ターミナルから立ち上がるように行なった手順をメモする。

環境

Macbook Pro
macOS Big Sur 11.4

Python 3.9.4

ターミナル

まずは仮想環境を作成する。名前はPracticeにした。

conda create -n Practice

続いて、Pythonのバージョンを以下のコマンドで指定する。
最新バージョンである3.9.4で実行した。(2021年7月8日時点)

conda create -n Practice python=3.9.4

実行環境を指定する必要があるため、以下のコマンドを実行する。

source activate Practice

パッケージの追加

pip install jupyterlab

以下のコマンドでJupyter labを立ち上げる。

jupyter lab
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0