×

Anaconda python 3 installation for windows 10

If you are a problem solver and like to solve programming questions, the anaconda distribution for python could be one of the best options to use and solve problems in python. Anaconda is a free application and can be installed on personal computers (school or work) where administration access is generally not required. Anaconda comes up with many different pre-installed packages and libraries in python that one can use, like NumPy, Pandas, Matplotlib and many other packages that programmers use.

In this article, you will learn about anaconda python 3 installations for windows 10, setting up the python environment and executing python programs.

Installation steps of anaconda python 3

You can use the following link to download anaconda python 3

            Link: -https://www.anaconda.com/products/distribution

  1. Select the Windows option to install it for the windows version.
  2. Click Download
  3. Open Anaconda and set Python Environment
  4. Open Anaconda prompt and run your python code.

Open anaconda.com/anaconda downloads page

When you will open this link, https://www.anaconda.com/products/distribution.

The window screen will look something like this like shown in below image.

Select the option according to your system configuration to download.

Anaconda python 3 installation for windows 10 64 bit

Select windows


Select the Windows button to download Anaconda for windows. You can see a pop-up on the right side of the page, choose the options according to your system configuration. It can be either Windows or Linux, or macOS.

Anaconda python 3 installation for windows 10 64 bit

Download

Now, you need to select the most recent version of python (the version at the time of writing this article is python 3.9) to download, you can select either the 64-bit graphics installer version or 32-bit graphics installer version to download it. If you are unsure if your computer is working on a 32-bit version of Windows or a 64-bit version of windows, then choose the 64-bit version.

After selecting the download option, you will see the following window.

Anaconda python 3 installation for windows 10 64 bit

 

Open and set environment

Once the download starts, it might take some time because it is too large (about 600 MB). Once the download is completed, open and run the .exe installer.
You must click Next to confirm the installation at the start of the installation process. Then click on “I agree” to agree with the license. You do not need to check the box provided for the advanced installation screen option, as it is not recommended.

Anaconda python 3 installation for windows 10 64 bit
Anaconda python 3 installation for windows 10 64 bit

Open anaconda prompt and run your code

Now your python anaconda environment is set up, go to the windows menu bar and search for Anaconda Prompt.

The Anaconda Prompt is now visible. The Python distribution Anaconda and the Anaconda Prompt are both command-line interfaces. The Anaconda Prompt, which is just a blank screen and some text, may not seem like much, but Python problem solvers find it useful.

In Anaconda Prompt, type python and press enter; this will invoke and call the python interpreter.

Now you can start writing your python code and execute your python codes.

After completing your work or tasks, you can exit the Anaconda prompt.

Enter exit () at the prompt >>> to terminate the Python interpreter. The instruction exit () has two parentheses at the end. To terminate the Python interpreter and return to the Anaconda Prompt, use the () command.

You can also try this to close the Anaconda prompt; close the window it will automatically exit from the anaconda prompt, or else you can use the exit command.

Whenever you want to execute your python codes, you need to open the anaconda prompt again and type python to set the environment.

This is how you can install anaconda python for windows and run your python files. If you face any trouble in installing anaconda python for windows, try to read the article carefully and follow the steps again.

It is better to set up the same path on your computer for downloading python shell or anaconda python. It is advised to store all your python files at one location so that you can easily access them and do not get any interpreter issues during the execution of larger projects.


Related Topics

Sys Module in Python

What are Modules? The Modules are the kind of files that contain Python statements and definitions. The module is known by the name of the file followed by the suffix “.py”....

5 minutes read.

Python map() function

Python map() function The map() function in Python returns an iterator that applies a function to every item of iterable, yielding the results. Syntax map(function, iterable, ...) Parameter function: It is a required parameter that represents the function to...

1 minute read.

Socket Programming in Python

Socket Programming in Python In this tutorial, we will discuss network programming using Python programming language. We will explore all basic concept of network with Python script. Network Services in Python Python has...

9 minutes read.

Data Structures and Algorithms Using Python | Part 1

Data Structures: Data Structure is defined as a way to organize and store the data so that we can access the data and work more efficiently. Data structures also describe the...

18 minutes read.

Python bin() function

Python bin() function The bin() function in Python returns the binary version for the specified integer. Syntax bin(x) Parameter n: This parameter represents an integer or int value. Return This function returns a binary string for the specified integer...

1 minute read.

Kite Python

Kite in Python: The Kite is a package provided by the python programming language; it works with the help of artificial intelligence and helps us write code inside the visual studio....

3 minutes read.

Python Tuple count() Method

Python Tuple count() Method The tuple.count() method in Python returns the number of times a specified value appears in the tuple. Syntax tuple.count(value) Parameter value- This parameter represents the element to search in the tuple Return This...

1 minute read.

Anonymous/Lambda Function in Python

Lambda keyword is used to declare an Anonymous function, i.e. a function that does not have any name. It is also called Anonymous functions. In python, normal functions are defined...

3 minutes read.

Cx_Oracle Python with Example

Python Programming Language: Python programming language is one of the most used programming languages, as it is used widely in the field of software and data analysis, web development, etc. It...

6 minutes read.

How to Print Pattern in Python

How to Print Pattern in Python. Pattern programs are really important for beginners and they are always asked in all the technical interviews. Multiple loops approach is used to print the different...

6 minutes read.

Python for Data Analysis

Data analysis uses various techniques to read, illustrate, manipulate and evaluate a particular data. You can have access to the data and keep the data updated regularly. You can append...

4 minutes read.

Hypothesis Testing in Python

Hypothesis Testing in python is widely used along with statistics. Many libraries in Python are very useful for statistics and machine learning. Libraries like numpy, scripy etc. help in hypothesis testing in...

12 minutes read.

How to Make an App with Python

In this age of mobiles, rapid mobile application development has got a lot of traction. Moreover, app developers are high in demand because of the increase in digitization. Generally, Python is...

4 minutes read.

Python MySQL Client

MySQL client is a project that is the subdivision of the MySQLdb package. This package provides an interface that runs the Python database API. Installing mysqlclient You can easily install mysqlclient with...

5 minutes read.

How to comment out a block of code in Python

When you are writing code in Python, you may want to document it. You need to mention why a piece of code functions, for instance. Mathematics, algorithms, and intricate business...

4 minutes read.

Python lock

Before understanding the concept of Python-lock we need to understand what kind if condition we require to implement the locks in Python. Let us start with multithreading and its implementation...

5 minutes read.

Python Operator Precedence

Before knowing about the operator precedence in Python, we have to know about the operators in Python. So let's have a look at it. According to one definition, the operator is...

3 minutes read.

Python String join() method

Python String join() method The String.join() method in Python concatenates each element of an iterable (such as list, string and tuple) to the given string and returns the concatenated string. Syntax string.join(seq) Parameter Seq: This...

1 minute read.

Python - Binomial Distribution

Introduction Definition of the Binomial Distribution The method of counting how many instances of a specific event there have been is called the binomial distribution. It will outline the possible outcomes or...

4 minutes read.

Python Strong Number

Strong Number- Logic Divide each of the number's digits into separate units to determine if it is a strong number or not.The factorial of each digit must then be determined. The...

5 minutes read.