[PYTHON] Install Anaconda on Windows 10

Introduction

I'm from the hardware field, not the IT and software fields. So, speaking of programming-like things, at a level where only Excel functions can be used, To be honest, I'm a super-dreadnought beginner who said, "Python? What is it delicious?" (Therefore, there may be inaccurate interpretations and inappropriate content from a professional perspective, In that case, we would appreciate it if you could give us your suggestions and advice. )

I'm such a person, but (1) I want to automate and speed up data collection, preprocessing, and analysis that are common on a daily basis. (2) I want to broaden my range of work (rather, I'm afraid that the range of work will narrow if I keep doing this ...) ③ I want to teach my children

I've been studying Python since the spring of 2020. So, this time, it's easy to build a Python environment, which is the first step. I would like to install ** Anaconda **.

0. What is Anaconda?

Anaconda is a library that is often used in Python and Python (a package of several functions). It installs all at once, so you can quickly build a Python environment. Since it is easy to add and manage libraries after that, and it is free (free), It is used by a wide range of users.

1. Download Anaconda

Then, please access here first. There is a download link for the Windows version at the bottom of the page, so click the appropriate one (32bit or 64bit) and download it to any location. (For how to check your own bit number, see here) Since the file size is large, it will take several minutes or more to download, so wait for a while until it is completed.

2. Install Anaconda

When the download is complete, double-click the download file to run it.

When the following screen appears, click Next

If you agree with the terms, click ʻI Agree`

Select Just Me and click Next (Select ʻAll Users` if you want to make it available to all users who share the PC, not just the logged-in user)

Specify the installation directory. Write arbitrarily, or click Next if the default settings are okay

If you are installing Python for the first time, also check the top row and click ʻInstall`. It says Not recommended, and the letters turn red, but you don't have to worry about it.

The installation will start, so wait a few minutes to a few tens of minutes. If you can install it without any problem, the following image will appear. Click Next-> Finish.

  • Open the material page such as tutorials is checked, so uncheck it if you do not need it.

in conclusion

This completes Anaconda download-> installation!

Recommended Posts