DEV Community

Kiran J
Kiran J

Posted on

Jupyter for Python and Machine Learning

Jupyter Notebook is a coding assistant for Machine Learning or Python learners.

Here are the steps to install:

Mac/Windows:

  1. Install Docker
  2. Once Step(1) is completed, Open Terminal or Command Prompt and run the below command
docker pull jupyter/datascience-notebook
Enter fullscreen mode Exit fullscreen mode
  1. Once Step(2) is done, run the below command in Terminal or Command Prompt.
docker run -p 10000:8888 jupyter/datascience-notebook
Enter fullscreen mode Exit fullscreen mode
  1. Check and copy the URL from console output like http://127.0.0.1:8888/lab?token=

  2. Open browser and open the URL to start Jupyter Notebook.

Top comments (0)