Install anaconda3 and build a python3.10 development environment [AI deep learning environment construction]

Install anaconda3 and build a python3.10 development environment
1. Open the official conda download address
https://repo.anaconda.com /archive/, find Anaconda3-2023.03-1-Windows-x86_64.exe, download it and install it to your target disk in the default way.
2. Open the installed Anaconda Powershell Prompt
and execute conda env list to view the local conda environment
(base) PS C :\Users\Administrator> conda env list
# conda environments:
#
base                                                    >

3. Now install a conda environment with python version 3.10
Execute: conda create -n xmpytorch2 python=3.10 
Normally an error will be reported , cannot be installed. At this time we need to mount a domestic mirror source URL. Take mounting the mirror source of Tsinghua University as an example. The following are the detailed steps:
(1). View the local mirror source:
conda config --show channels
(2). Then we manually add the Tsinghua University mirror source and enter the command:
conda config --add channels https://mirrors.tuna.tsinghua. edu.cn/anaconda/pkgs/main
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/r
conda config --add channels https://mirrors.tuna. t

Guess you like

Origin blog.csdn.net/kesjc2017/article/details/132882344