0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

jupyter notebookのinstall〜起動

Last updated at Posted at 2024-08-25

Jupyter Notebookのインストールと起動手順

1. Pythonのインストール

まず、Pythonをインストールします。公式サイトから最新のPythonをダウンロードし、インストールします。

インストール時に「Add Python to PATH」にチェックを入れることを忘れないでください。

2. pipの確認

Pythonには標準でpipが含まれています。ターミナルまたはコマンドプロンプトを開き、以下のコマンドを入力してpipが正しくインストールされているか確認します。

pip --version

3. Jupyter Notebookのインストール

pipを使用してJupyter Notebookをインストールします。ターミナルまたはコマンドプロンプトで以下のコマンドを実行します。

pip install notebook

4. Jupyter Notebookの起動

インストールが完了したら、Jupyter Notebookを起動します。ターミナルまたはコマンドプロンプトで以下のコマンドを実行します。

jupyter notebook

これにより、デフォルトのWebブラウザが開き、Jupyter Notebookのダッシュボードが表示されます。

5. ノートブックの作成

ダッシュボード上で「New」ボタンをクリックし、Python 3を選択して新しいノートブックを作成します。

6. ノートブックの使用

セルにコードを入力し、Shift + Enterで実行することができます。必要に応じてセルを追加したり、Markdown形式で文書を作成したりできます。

7. Jupyter Notebookの終了

作業が終わったら、Jupyter NotebookのターミナルまたはコマンドプロンプトでCtrl + Cを押して終了します。プロンプトが表示されたら、yを入力して停止します。

以上がJupyter Notebookのインストールと起動手順です。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?