Install the Python environment (detailed illustration of Anaconda installation)

About the choice of Python environment for novices

Linux operating systems and MAC generally come with Python, and you can use Python directly. Windows operations generally do not require Python. Therefore, in Windows, you must first install the Python environment before you can learn and use Python. For different needs and different environments, there are various ways to build Python environments. For newbies, I think Anaconda is a pretty good choice. Anaconda is a Python distribution package. Now (February 17, 2021), the latest version of Anaconda includes Python 3.8 and other rich packages for scientific computing (conda, numpy, scipy, ipython notebook, etc.). Anaconda has the following main features:

  1. Open source
  2. Simple installation process
  3. High performance using Python and R languages
  4. free community support
  5. Supports Windows, Linux and MAC.

Download Anaconda

The official download address of Anaconda is: https://www.anaconda.com/products/individual#Downloads.
Click Python 3.8 64-Bit Graphical Installer (457 MB) on this page to download.
For domestic users, the download speed of the official download address may be a bit slow. We can download from domestic mirror sources, such as Tsinghua University open source software mirror station:
https://mirrors.tuna.tsinghua.edu.cn/anaconda/ archive/
Anaconda3-2020.11-Windows-x86_64.exe

Install Anaconda

Double-click Anaconda3-2020.11-Windows-x86_64.exe. The installation interface will appear. Click Next: Click
Anaconda installation 1
I Agree:
Anaconda installation 2
Select the second one here, All Users:
Anaconda installation 3
Then click Next:
Anaconda installation 4
Click Next:
Anaconda installation 5
Select both check boxes:
Anaconda installation 5
Then click Install:
Anaconda installation 6
The program starts to install:
Anaconda installation 7
The installation is complete, click Next:
Anaconda installation 8
Click Next:
Anaconda installation 9
Click Finish, the installation is completed:
Anaconda installation 10
You can see in the Windows start menu that there are two new projects recently added, one is Anaconda Powershell Prompt, and the other is Jupyter Notebook.

Insert image description here

We open the Anaconda Powershell Prompt and enter:
>>> Python -V
If it displays:
Python 3.8.5, it means the installation is successful.
Anaconda installation 12

Guess you like

Origin blog.csdn.net/mouse2018/article/details/113830986