Sunday, November 5, 2023

Installing Anaconda Distribution On Windows

In this post we'll see how you can install Anaconda distribution on Windows.

Anaconda Distribution is a free, easy-to-install package manager, environment manager, and Python distribution with a collection of 1,500+ open source packages. This gives you an advantage that many different packages like numpy, pandas, scipy come pre-installed. If you need any other package you can easily install it using the Anaconda's package manager Conda.

Jupyter Notebook which is an incredibly powerful tool for interactively developing and presenting data science projects also comes pre-installed with Anaconda distribution.

You also get Spyder IDE pre-installed with Anaconda.

Anaconda is platform-agnostic, so you can use it whether you are on Windows, macOS, or Linux.

URL for downloading Anaconda

You can download Anaconda disribution from this location- https://www.anaconda.com/distribution/

There you will see the option to install for Windows, macOS, Linux. Select the appropriate platform using the tabs. With in the selected platform chose the version of Python you want to install and click on download.

Installing Anaconda Distribution

Installation Process

Once the download is done double click the installer to launch. Click Next.

Read the licensing terms and click “I Agree”.

Select an install for “Just Me” unless you’re installing for all users (which requires Windows Administrator privileges) and click Next.

Select a destination folder to install Anaconda and click the Next button.

Choose whether to add Anaconda to your PATH environment variable. Anaconda recommends not to add Anaconda to the PATH environment variable, since this can interfere with other software. Instead, use Anaconda software by opening Anaconda Navigator or the Anaconda Prompt from the Start Menu.

Anaconda installation options

Click the Install button. If you want to watch the packages Anaconda is installing, click Show Details. Click the Next button.

Once the installation is complete. Click next.

Click Finish at the end to finish setup.

Verifying your installation

First thing is to check the installed software. In windows click start and look for Anaconda.

Anaconda installation menu options

To confirm that Anaconda is installed properly and working with Anaconda Navigator and conda, follow the given steps.

  1. Anaconda Navigator is a graphical user interface that is automatically installed with Anaconda. Navigator will open if the installation was successful. If Navigator does not open that means there is some problem with the installation.
  2. Conda is a command line interface (CLI), you can use conda to verify the installation using Anaconda Prompt on Windows or terminal on Linux and macOS. To open Anaconda Prompt select Anaconda Prompt from the menu. After the prompt is opened-
    • Enter command conda list. If Anaconda is installed and working, this will display a list of installed packages and their versions.
    • Enter the command python. This command runs the Python shell.

That's all for this topic Installing Anaconda Distribution On Windows. If you have any doubt or any suggestions to make please drop a comment. Thanks!

>>>Return to Python Tutorial Page


Related Topics

  1. Functions in Python
  2. Python count() method - Counting Substrings
  3. Constructor in Python - __init__() function
  4. Multiple Inheritance in Python
  5. Namespace And Variable Scope in Python

You may also like-

  1. Variable Length Arguments (*args), Keyword Varargs (**kwargs) in Python
  2. Bubble Sort Program in Python
  3. Operator Overloading in Python
  4. List in Python With Examples
  5. How to Install Java in Ubuntu
  6. Installing Hadoop on a Single Node Cluster in Pseudo-Distributed Mode
  7. HashSet in Java With Examples
  8. Shallow Copy And Deep Copy in Java Object Cloning

No comments:

Post a Comment