安装Anaconda
安装地址:Download Anaconda Distribution | Anaconda
Anaconda环境配置
D:\progrom_files\anaconda_2024_06_1
D:\progrom_files\anaconda_2024_06_1\Scripts
D:\progrom_files\anaconda_2024_06_1\Library\bin
D:\progrom_files\anaconda_2024_06_1\Library\mingw-w64\bin
执行cmd命令,版本号出现则配置成功:
C:\Users\30610>conda --version
conda 24.7.1
C:\Users\30610>
conda的一系列操作
添加国内清华源:
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/main/
删除默认源:
conda config --remove channels defaults
设置搜索时显示通道地址:
conda config --set show_channel_urls yes
conda升级:
conda update conda
成功控制台输出:
C:\Users\30610>conda update conda
Channels:
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
- defaults
Platform: win-64
Collecting package metadata (repodata.json): done
Solving environment: done
# All requested packages already installed.
C:\Users\30610>
conda的日常操作
在本地python环境下创建一个虚拟环境:
conda create -n ajplus_test python=3.12.5
虚拟环境激活:
activate ajplus_test
注销当前环境:
deactivate
环境复制:
conda create -n ajplus_test_s --clone ajplus_test
环境删除:
conda remove -n ajplus_test_s --all
查看已安装包:
conda list
安装 / 移除包:
conda install / remove xxx
conda查看所有激活环境所在路径:
conda info -e