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

Engage with a sea of insights in this enlightening article, highly esteemed within the encouraging DEV Community. Programmers of every skill level are invited to participate and enrich our shared knowledge.

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

On DEV, sharing knowledge smooths our journey and strengthens our community bonds. Found this useful? A brief thank you to the author can mean a lot.

Okay