# 安装conda
wget -c https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
chmod 777 Miniconda3-latest-Linux-x86_64.sh
sh Miniconda3-latest-Linux-x86_64.sh
# conda的常用操作
conda
# 查看子环境列表
conda env list
# 创建conda环境
conda create -n yourEnvironmentName python==3.7.0
# 激活
conda activate yourEnvironmentName
# 注销
conda deactivate
# 删除子环境
conda remove -n yourEnvironmentName --all
# 重命名conda子环境
# 先 clone 要改名的环境,clone的过程中可以重命名
conda create -n yourEnv --clone yourEnvironmentName
# 删除原环境
conda remove -n yourEnvironmentName --all
# 添加镜像
# 查看目前conda源
conda info
# 删除并恢复默认的conda源
conda config --remove-key channels
# 添加指定源
conda config --add channels * # (*指代你要添加的源)
# 设置安装包时,显示镜像来源,建议显示
conda config --set show_channel_urls yes
# 删除指定源
conda config --remove channels * # (*代表你要删除的源)
#添加清华的源
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
# 中科大的源
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
# 阿里云的源
conda config --add channels http://mirrors.aliyun.com/pypi/simple/
|