Anaconda installation configuration tutorial (Python)

1. Click the link to enter the Tsinghua University mirror station

Tsinghua open source mirror anaconda

2. Click the arrow on the right of Date, you can see the latest installation package, install the corresponding installation package according to the computer system

 3. Run the installation package and perform the following operations in sequence

 

 

 The installation path can be placed on other disks, you need to create an empty folder by yourself

 Check only this one

 After the installation is complete, click finish

4. Test installation 

Search anaconda in the menu bar, find the Anaconda Prompt as shown in the figure, and open it

If you see (base) in the upper left corner, it means the installation is successful

 

 5. Create an activation environment

win+R, cmd, open the command line, enter python --version, check the python version

 Remember this version, open the Anaconda Prompt page, and use the command  conda create -n py311 python=3.11 ( everyone is different here, you need to modify it according to the version you found out.)

enter y 

 See the example in the figure below, indicating that the installation is complete.

 conda activate py311 activates the environment, and sees that the lower left corner changes to pyxx, which means entering the environment

 At this point, it means that the installation and configuration of anaconda are all completed.

Guess you like

Origin blog.csdn.net/weixin_54633033/article/details/131717087