Machine Learning 2: Jupyter Notebook

Introduction

Jupyter Notebook is an open-source web application that allows you to create and share documents containing live code, equations, visualizations, and narrative text. It is widely used in data science, scientific computing, machine learning, and other fields that require interactive and exploratory data analysis.

Installation

To install Jupyter Notebook using pip3, follow these steps:

  1. Open your terminal.

  2. Run the following command to install Jupyter Notebook:

    ソースコード
    1pip3 install jupyter
  3. Run the following command to run Jupyter Notebook:

    ソースコード
    1 jupyter notebook
  4. Then the Jupyter Notebook will be run in your browser in http://localhost:8888/tree

    Summary

This note is simple because there's no too much things need to be talk about. The only thing need to be remembered is that how to install the Jupyter Notebook in your computer and run it for the preparation of following study.