. 创建虚拟环境 xxx(指定python版本,如python=3.6)
conda create -n xxx python=3.6
2. 激活虚拟环境
conda activate xxx # for windows
source conda activate xxx # for Linux & Mac
3. 关闭虚拟环境
conda deactivate # for windows
source conda deactivate # for Linux & Mac
4. 查看已安装的软件包、虚拟环境、版本
conda list
conda env list
conda –version # 查看conda的版本
python –version # 查看python解释器的版本
conda search –full-name tensorflow # 查看python对应的tensorflow软件版本
conda search tensorflow # 同上
anaconda search -t conda tensorflow
5. 添加/删除 镜像 与 设置搜索时显示通道地址
# 添加镜像
conda config –add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ # 添加清华镜像2
conda config –add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/ # 添加清华镜像2
conda config –add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/ # 添加中科大镜像:
# 删除镜像
conda config –remove channels ‘https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/’
# 设置搜索时显示channels地址
conda config –set show_channel_urls yes
# 查看channels是否添加/删除成功
conda config –show-sources # 方式一
conda config –get channels # 方式二
# conda的配置文件 .condarc,可以在这里添加/删除镜像链接
在用户的家目录(windows:C:\\users\\username\\,linux:/home/username/)。但对于.condarc配置文件,是一种可选的(optional)运行期配置文件,其默认情况下是不存在的,但当用户第一次运行conda onfig命令时,将会在用户的家目录创建该文件。
6. 安装包
conda install tensorflow=1.8.0 python=3.6(安装 conda search –full-name tensorflow 中显示的对应版本)
conda install -c https://conda.anaconda.org/anaconda tensorflow=1.8.0
conda install -n 虚拟机名称 -c 镜像地址 安装包名称 # 若不指定 -n,默认在当前的虚拟环境中安装
7. 更新包
conda update -n 虚拟机名称 安装包名称
8. 删除包
conda remove -n 虚拟机名称 安装包名称
9. 删除虚拟环境
conda remove -n xxxx –all // 删除xxxx虚拟环境