DEV Community

KIranuknow
KIranuknow

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)

👋 Kindness is contagious

Discover a treasure trove of wisdom within this insightful piece, highly respected in the nurturing DEV Community enviroment. Developers, whether novice or expert, are encouraged to participate and add to our shared knowledge basin.

A simple "thank you" can illuminate someone's day. Express your appreciation in the comments section!

On DEV, sharing ideas smoothens our journey and strengthens our community ties. Learn something useful? Offering a quick thanks to the author is deeply appreciated.

Okay