赞
踩
参考ubuntu18.04环境下安装anaconda红框部分
Windows10环境下安装anaconda
conda config --show-source
# 查看所有信息
conda config --show
# 具体查看某个部分信息
conda config --show channels
conda config --show custom_channels
conda config --show default_channels
conda config --show show_channel_urls
# 添加清华anaconda镜像
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
# 添加清华anaconda镜像
conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
解决"conda install"下载速度慢问题:
# 首先生成这个配置文件(第一次使用)
conda config
# 修改~/.condarc文件
sudo gedit ~/.condarc
# 清除索引缓存,保证用的是镜像站提供的索引
conda clean -i
# 查看conda设置 conda config --show-source
## 写入源文件的内容 channels: - defaults show_channel_urls: true default_channels: - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/r - 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 auto_activate_base: true
# 切换回默认源
conda config --remove-key channels
# 必须在base环境下
conda deactivate
# 更新conda
conda update conda
# 更新Anaconda及其包
conda update anaconda
# 更新最新版本的anaconda-navigator
conda update anaconda-navigator
# environment_name 虚拟环境名; x.x是python版本
conda create -n environment_name python=x.x
# eg:conda create -n pytorch python=3.7
conda remove -n environment_name --all
# eg: conda remove -n pytorch --all
# old_environment_name 旧环境
# new_environment_name 新环境
conda create --name new_environment_name --clone old_environment_name
# eg: conda create --name pytorchforDL --clone pytorch
# 重命名则彻底删除旧环境
conda activate environment_name
# eg: conda activate pytorch
conda deactivate
conda env list
# 或者
conda info --envs
#关闭自动激活状态(命令框会关闭自动激活base)
conda config --set auto_activate_base false
#关闭自动激活状态
conda config --set auto_activate_base true
conda list
conda list -n environment_name
# eg: conda list -n base
# package_name 安装包名
conda search package_name
# eg: conda search numpy
# 根据conda search package_name安装包
conda install -c package_name
# eg: conda install numpy=1.15.0
# 安装本地包XXXX.tar.bz2
conda install --use-local ~/Downloads/XXXX.tar.bz2
# conda list查看
conda update package_name
# eg: conda update numpy
# 升级所有包
conda update --all
conda uninstall package_name
# numpy和numpy-base需要一起删除
# eg: conda uninstall numpy
# eg: conda uninstall numpy-base
# 删除没用包
conda clean -p
# 删除没用tar
conda clean -t
# 删除所有的无用包及cache
conda clean -y --all
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。