2
1

More than 1 year has passed since last update.

AWS Cloud9でJupyter labの環境を構築する

Last updated at Posted at 2022-03-26

背景・目的

AWS Cloud9を試してみたで構築した環境にJupyter labをインストールする。

内容

JupyterLabとは

JupyterLab is the next-generation user interface for Project Jupyter

  • Project Jupyterの次世代ユーザーインターフェイスらしい。

JupyterLab will eventually replace the classic Jupyter Notebook.

  • Jupyter Notebookから最終的に置き換わるようだ。

実践

インストール

$ pip install jupyterlab                                                                                                                                                                                                                                                

起動

失敗

  • 以下のコマンドを実行し、Preview>Preview Running Applicationを実行すると、以下の画面が表示された。
jupyter lab

The server might be running on a different port; make sure it runs on port 8080.

  • サーバは別のポートで実行されているかもしれない。8080で実行する必要があるようだ。

成功

  • ポートとIPアドレスを指定し、Preview>Preview Running Applicationを実行すると、以下の画面が表示された。
jupyter lab --port $J_PORT --ip $J_IPADRESS
  • Pop Out into New Windowをクリックすると画面が表示されました!
  • Tokenを入力してLog inをクリックすると初期画面が表示されました!

参考

2
1
1

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
2
1