how to install jupyter notebook in windows 10|anaconda installation windows 10

Опубликовано: 24 Август 2026
на канале: Simplified EEE Studies
371
10

install anaconda jupyter notebook windows 10/anaconda python installation
Dear all,
The step by step procedure for Jupytor Notebook installation is included in the video.
If you don't have Python installed on your Windows 10 system, follow these steps:

a. Download Python: Go to the official Python website at https://www.python.org/downloads/ and download the latest Python version for Windows. You can choose either Python 3.x (recommended) or Python 2.x if required for compatibility reasons.

b. Run the Installer: After downloading the Python installer, run it. During installation, make sure to check the box that says "Add Python X.Y to PATH" (where X.Y is the version number) so that Python is added to your system's PATH environment variable.

c. Verify Installation: Open a Command Prompt and enter the following command to verify that Python is installed:

You should see the installed Python version.

Install Jupyter Notebook:

Once Python is installed, open a Command Prompt or PowerShell window and enter the following command to install Jupyter Notebook using pip

his command will download and install Jupyter Notebook and its dependencies.

Start Jupyter Notebook:

After the installation is complete, you can start Jupyter Notebook by opening a Command Prompt or PowerShell window and running the following command:

This command will launch the Jupyter Notebook server, and a new tab in your default web browser will open with the Jupyter Notebook interface.

If the browser doesn't open automatically, look for a URL in the command prompt that starts with "http://localhost:8888/." You can copy and paste this URL into your web browser to access Jupyter Notebook.

Create and Manage Notebooks:

Once Jupyter Notebook is running, you can create, edit, and manage notebooks in your web browser. You can also navigate your file system, create new notebooks, and open existing ones from the Jupyter interface.

That's it! You have successfully installed and set up Jupyter Notebook on your Windows 10 system. You can now use it for various data analysis, coding, and documentation tasks.