1 annoconda下载
文件地址,选择版本下载https://repo.anaconda.com/archive/ 如下在win10版本: https://repo.anaconda.com/archive/Anaconda3-2023.03-1-Windows-x86_64.exe
完成后根据向导安装。
2 清空镜像源,回到初始状态
conda config --remove-key channels
3 显示当前的镜像源
conda config --show-sources
4 添加新的镜像源
添加清华镜像源:
conda config --add channels https://pypi.tuna.tsinghua.edu.cn/simple
还可以添加其他的几个镜像源:
#豆瓣源
conda config --add channels http://pypi.douban.com/simple/
# 阿里源
conda config --add channels https://mirrors.aliyun.com/pypi/simple/
#中科大源
conda config --add channels https://pypi.mirrors.ustc.edu.cn/simple/
5 设置搜索时显示检索地址
conda config --set show_channel_urls yes
6 删除指定的镜像源
conda config --remove channels https://pypi.mirrors.ustc.edu.cn/simple/
7 指定特定软件从特定的镜像源下载
pip install numpy -i https://mirrors.aliyun.com/pypi/simple/
8 创建conda环境
conda create -n env_name python==3.9
9 激活conda环境
conda activate env_name
10 删除指定环境
conda remove -n env_name -all