conda 常用命令
Posted shanger
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了conda 常用命令相关的知识,希望对你有一定的参考价值。
1、查看
conda list # 查看已安装的包 conda env list # 查看已创建的虚拟环境 conda info --e # 查看虚拟环境信息 conda search tensorflow-gpu # 查看能否获得
2、 更新
conda updata python # 更新 python
conda update anaconda # 更新 Anaconda
conda update numpy=1.93 # 更新到指定版本
3、添加 Anaconda 仓库的镜像
清华的镜像:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
中科大的镜像:
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
4、安装
conda install pandas
condas install numpy=1.8 # 安装 1.8 版本的 numpy
conda install --channel https://conda.anaconda.org/menpo opencv3 # 安装指定来源的包
5、删除
conda remove pyperclip
conda remove env ** # 删除名为 ** 的虚拟环境
以上是关于conda 常用命令的主要内容,如果未能解决你的问题,请参考以下文章