Illustration of the next step to install the Anaconda python environment on macOS

Illustrated macOS step by step installation of Anaconda

Why install Anaconda

MAC usually comes with Python, so you can use Python directly. However, generally the python version that comes with MAC is relatively full and the version will be relatively low, so it is recommended to install python yourself. 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 (June 4, 2022), the latest version of Anaconda includes Python 3.9 and other rich packages for scientific computing (conda, numpy, scipy, jupyter-lab, 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/distribution.
Click the green Download button on this page to download anaconda.
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-2022.05-MacOSX-x86_64.pkg

Install Anaconda

Double-click Anaconda3-2022.05-MacOSX-x86_64.pkg. The installation interface will appear. Click "Continue":
Insert image description here
After reading the "Important Information", click "Continue":
Insert image description here
After reading the "Software License Agreement", click "Continue":
Insert image description here

Click the "Agree" button in the pop-up window:
Insert image description here

It is generally not recommended for novices to modify the installation location. Click "Install":
Insert image description here
Wait for the installation to be completed:
Insert image description here
If this window pops up, click "OK":
Insert image description here
Click "Continue":
Insert image description here
The installation is complete, click "Close":
Insert image description here
Finally, you can delete the installation file or keep it:
Insert image description here

Open "Terminal" and enter "python". If the following content appears, the installation is successful:

Python 3.9.12 (main, Apr  5 2022, 01:53:17) 
[Clang 12.0.0 ] :: Anaconda, Inc. on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> 

Guess you like

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