![]() |
VOOZH | about |
Jupyter Notebook is one of the most useful tool among professionals for data science and machine learning to perform data analysis and data visualization and much more. If you're a Windows user and looking for different ways to install Jupyter Notebook, then this guide will help you out.
1. Python 3.7 or later
2. Windows 7 or later
3. RAM: 4GB (atleast), 8GB or more is recommended
4. Storage: 1GB or more
If you're looking to get Jupyter Notebook in your Windows 7, 8, 10 or 11 with data science libraries (such as Matplotlib, Pandas, etc.) then this method is suitable for you. Here's how you can do it:
Note: You need to install Anaconda in your Windows OS to begin with this method. You can refer to this article: Install Anaconda in your Windows
Firstly, Launch anaconda and click on the Install Jupyter Notebook Button.
Search for Jupyter Notebook and click on the Install button to begin with the installation process.
Once the installation is complete, it will start loading the packages that comes along with it and click to finish the Installation.
Now, click on Launch button to start the Jupyter Notebook.
Using PIP with Python is one of the best method to install Jupyter Notebook in your Windows Operating System. Here's how to perform this action in few steps:
Use the following command to update pip (to verify if pip is updated):
python -m pip install --upgrade pip
After updating the pip version, type the following command to install Jupyter:
python -m pip install jupyter
Now, the supportive packages will start Installing along with it.
Use the following command to launch Jupyter using:
jupyter notebook
Now, the Jupyter Notebook will launch automatically in your default web browser.
As of recent updates, Jupyter Notebook can also be installed directly from the Microsoft Store on Windows 10 and Windows 11 by using the following steps:
Select and click to initiate the installation.
Once installed, search for Jupyter Notebook in the Start Menu and launch it.
This will open Jupyter in your Windows 10 or 11.
If your system is slow or looking out for a light-version alternative to Anaconda, you can use Miniconda. Miniconda is a minimal version of Anaconda and allows you to install only the packages you need.
Visit the Miniconda website and follow the installation instructions to get Miniconda for Windows.
Open Anaconda Prompt (which is installed with Miniconda) and run the following command:
conda install jupyter
Now type the following command in the Anaconda Prompt to launch Jupyter:
jupyter notebook
Jupyter Notebook can be easily installed on Windows using Miniconda (Anaconda alternative), pip, Anaconda or Microsoft Store. Each method has its benefits depending on user preference and requirements. After installation, you can start using Jupyter Notebook for projects, experiments and learning.