00:00hey everyone welcome back to victor explains in today's video i'm going to show you how to
00:15download and install jupyter notebook on windows 11 and 10 with easy steps step 1 download python
00:22all right let's get started the first thing we need is python since jupyter notebook runs on
00:27top of it open your browser and head over to python.org
00:37once you're there click on downloads then choose windows from the list
00:44now scroll down and select the latest python release
00:49at the bottom you'll find the windows installer 64-bit go ahead and download that file
00:57step 2 install python after the download finishes open the installer
01:08before doing anything else make sure to check these two boxes
01:12this is important so windows can recognize python from the terminal
01:17i'm going with the default settings here so i'll simply click install now
01:20once the installation completes we can close the window and move on step 3 install jupyter
01:30let's install jupyter notebook itself open windows terminal or command prompt whichever you prefer
01:37to confirm python is installed correctly type python space dash dash version and press enter you should
01:50see the version number appear now let's install jupyter using pip type pip install jupyter and press enter then let
01:59it install all the required components
02:09if you see an update like this just highlight the command copy it with ctrl plus c then paste it into the
02:15terminal using ctrl plus v and press enter to run it when it finishes jupyter is ready to go
02:22step for run jupyter let's set up a workspace folder for our notebooks i'll create a new folder on the desktop
02:34you can name it anything you like
02:36open that folder then right click and choose open in terminal
02:52to launch jupyter notebook inside this folder just run the command jupyter notebook this will open jupyter
02:58in your default web browser automatically step 5 create a new notebook now that jupyter is running
03:08click on new and choose python 3 notebook a fresh notebook will open let's give it a name so it stays
03:18organized go ahead and type a simple python command inside the first cell
03:28to execute it press ctrl plus enter or click on this run button and that's it your jupyter notebook is
03:35fully set up and working
Comments