How to install Anaconda (Windows version)

0 more software installation

For details, see >>
Commonly used development software installation directory navigation post

1 Materials required

First open the Anaconda official website and download the installation package for the corresponding platform
Anaconda official website
insert image description here
insert image description here
The package we installed here is Anaconda3-2022.10-Windows-x86_64.exe

2 installation steps

Next we start installing Anaconda
(1) Double-click the exe file to start the installation
and wait for the installation to complete (select Just me here)

insert image description here
insert image description here
Note: There is a method to automatically add environment variables. During the installation process, check Automatically add to Path Just select the option! Do this to skip step (2) below
insert image description here

(2) After the installation is completed, click System Properties Settings - Add Environment Variables (you can skip this step if you check the Automatically add to Path option during installation) :
insert image description here

Add under the system Path path (the two lines in the highlighted part, the specific installation path is subject to the machine):
\Anaconda3\Scripts
\Anaconda3\Library\bin

insert image description here

(3) Open the CMD command and enter conda. If it can be displayed normally, it means the installation has been successful:
insert image description here

3 Change the image source

(1) Initialize the .condarc file

conda config --set show_channel_urls yes

insert image description here
At this time, when we open the C drive user, we can see an additional .condarc file
insert image description here
(2) Open this file and edit it in the following way:
first set the root directory of the virtual environment

envs_dirs:
  - D:\software\Anaconda3\envs

Then add channels:
Tsinghua University mirror (installation is fast, but sometimes the latest version may not be installed successfully)

channels:
  - defaults
show_channel_urls: true
channel_alias: https://mirrors.tuna.tsinghua.edu.cn/anaconda
default_channels:
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/r
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/pro
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/msys2
custom_channels:
  conda-forge: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  msys2: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  bioconda: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  menpo: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  pytorch: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  simpleitk: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud

Alibaba Cloud Image (slow installation speed, but complete package content)

channels:
  - defaults
show_channel_urls: true
default_channels:
  - http://mirrors.aliyun.com/anaconda/pkgs/main
  - http://mirrors.aliyun.com/anaconda/pkgs/r
  - http://mirrors.aliyun.com/anaconda/pkgs/msys2
custom_channels:
  conda-forge: http://mirrors.aliyun.com/anaconda/cloud
  msys2: http://mirrors.aliyun.com/anaconda/cloud
  bioconda: http://mirrors.aliyun.com/anaconda/cloud
  menpo: http://mirrors.aliyun.com/anaconda/cloud
  pytorch: http://mirrors.aliyun.com/anaconda/cloud
  simpleitk: http://mirrors.aliyun.com/anaconda/cloud

A combined version of the two

channels:
  - defaults
show_channel_urls: true
channel_alias: https://mirrors.tuna.tsinghua.edu.cn/anaconda
default_channels:
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/r
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/pro
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/msys2
  - http://mirrors.aliyun.com/anaconda/pkgs/main
  - http://mirrors.aliyun.com/anaconda/pkgs/r
  - http://mirrors.aliyun.com/anaconda/pkgs/msys2
custom_channels:
  conda-forge: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  msys2: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  bioconda: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  menpo: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  pytorch: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  simpleitk: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud

Guess you like

Origin blog.csdn.net/weixin_41801682/article/details/130779679