0% found this document useful (0 votes)
56 views2 pages

Anaconda Jupyter-Notebook

This document provides a 7-step guide to installing Anaconda and using Jupyter Notebook on Windows. It instructs the user to download and install Anaconda from the Anaconda website, then launch Anaconda Navigator to manage packages and environments. From there, it guides launching Jupyter Notebook to create and run a Python code cell that prints "Hello, world!".

Uploaded by

sk2pptf5xr
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
56 views2 pages

Anaconda Jupyter-Notebook

This document provides a 7-step guide to installing Anaconda and using Jupyter Notebook on Windows. It instructs the user to download and install Anaconda from the Anaconda website, then launch Anaconda Navigator to manage packages and environments. From there, it guides launching Jupyter Notebook to create and run a Python code cell that prints "Hello, world!".

Uploaded by

sk2pptf5xr
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

A Step-by-Step Guide to Installing Anaconda and Using Jupyter

Notebook on Windows

Step 1: Preparations
Before we begin, make sure you have a stable internet connection and your Windows computer is powered
on.

Step 2: Download Anaconda


1. Open your web browser (e.g., Google Chrome, Microsoft Edge).
2. Go to the Anaconda download page: https://www.anaconda.com/products/distribution.
3. Scroll down to the ”Anaconda Distribution” section, and you’ll see two options: ”Individual Edi-
tion” and ”Enterprise Edition.” For beginners, the ”Individual Edition” is the right choice. Click the
”Download” button under the ”Individual Edition” box.

Step 3: Download Anaconda for Windows


1. On the next page, you’ll see options for Windows, macOS, and Linux. Click on the Windows icon to
download Anaconda for Windows.
2. Depending on your computer’s architecture (32-bit or 64-bit), choose the appropriate download. Most
modern computers are 64-bit. If you’re not sure, right-click on ”This PC” on your desktop, select
”Properties,” and under the ”System type,” you’ll see if it’s 64-bit or 32-bit.
3. Click on the download link for the architecture that matches your system. Anaconda will start down-
loading.

Step 4: Install Anaconda


1. Once the download is complete, locate the installer file (usually in your ”Downloads” folder) and
double-click it to run the installer.
2. Follow the installation wizard’s instructions. Here are some important points:
• Click ”Next” on the Welcome screen.
• Read and accept the license agreement by selecting ”I Agree.”
• Choose ”Just Me” when prompted to select an installation type.
• Choose the installation location (you can leave it as the default).
• Select ”Add Anaconda to my PATH environment variable.” This is important to make Anaconda
accessible from the command line.
• Click ”Install.”
3. Wait for the installation to complete. This may take a few minutes.

1
Step 5: Launch Anaconda Navigator
1. After installation, you’ll see a screen that says ”Installation Finished.” Check the box that says ”Install
Microsoft VSCode for Anaconda” if you’d like to use a code editor later, but it’s not necessary for this
basic guide.
2. Click ”Next” and then ”Finish” to complete the installation.

3. Search for ”Anaconda Navigator” in your Windows search bar and open it. This is the Anaconda
application that helps manage your Python environments and packages.

Step 6: Open Jupyter Notebook


1. In the Anaconda Navigator, you’ll see various applications listed. Find ”Jupyter Notebook” and click
the ”Launch” button next to it.
2. A new browser window should open with the Jupyter Notebook interface.

Step 7: Create a New Notebook and Run Code


1. In the Jupyter Notebook interface, click the ”New” button on the right-hand side and select ”Python
3” under ”Notebook.”
2. You’ll see a new notebook with an empty cell. In this cell, you can type Python code. For example,
you can type:

print("Hello, world!")

3. To run the code, click the ”Run” button in the toolbar, or press ”Shift+Enter” on your keyboard.
4. You should see the output below the cell, which will display ”Hello, world!”

Congratulations! You’ve successfully installed Anaconda, opened Jupyter Notebook, and run a basic
Python code. You can continue learning Python by exploring online tutorials and courses. Good luck on
your coding journey!

You might also like