In this tutorial we are going to install Jupyter Notebook in our Windows 10(64 bit) system. Follow the step-by-step process to install.


Step 1: Open command prompt in your system.


Note: First your want to install python in your system before doing this.


Step 2: Install pip using "pip install virtualenv" command,


Step 3: After installing pip Upgrade pip using "python -m pip install -upgrade pip" command.


Step 4: Next we want to create a Virtual environment as opencv using "virtualenv opencv" command.


Step 5: Now we want to move into the created virtual environment folder using "cd opencv" command.


Step 6: Then move into "Scripts" folder using "cd Scripts" command.


Step 7: Now we want to activate opencv environment by using "activate.bat" command.


Step 8: We want to install a python package called "numpy" into opencv environment by using "pip install numpy" command. 


Step 9: Install "OpenCV" package by using "pip install opencv-python" command.


Step 10: Install "matplotlib" package by using "pip install matplotlib" command.


Step 11: Now we want to install Jupyter Notebook by using "python -m pip install jupyter" command.


Step 12: It will take some time to install "Jupyter Notebook".


Step 13: Run Jupyter Notebook use "jupyter notebook" command.


Step 14: Now copy the url from command prompt and paste it on your web browser.


Step 15: To create a notebook, Go to dashboard and click on new, if you want to create python notebook select Python.

Post a Comment

Previous Post Next Post