码迷,mamicode.com
首页 > 其他好文 > 详细

conda 常用命令

时间:2020-05-12 20:15:10      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:config   info   conf   信息   conda   https   虚拟环境   set   gpu   

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 常用命令

标签:config   info   conf   信息   conda   https   虚拟环境   set   gpu   

原文地址:https://www.cnblogs.com/shanger/p/12873690.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!