`conda` environments management

本文介绍了如何使用conda进行环境管理,包括创建环境、通过environments.yml文件指定环境位置、更新环境、克隆环境、构建相同的conda环境、导出环境配置文件、恢复环境以及删除环境等操作。重点讲解了如何避免依赖冲突并分享环境配置。
摘要由CSDN通过智能技术生成
conda environments management :
cmds creating environments

you can create the environments firstly, and then install packages that all you needs. Or, you can create the environments and install packages simultaneously.

######################################################################
#create environments
$ conda create -n Newenv
#install packages
$ conda install -n Newenv python=3.6 scipy=0.15.0 astroid babel
########################################################################
#create environments and install packages simultaneously
$ conda create -n Newenv python=3.6 scipy=0.15.0 astroid babel

Install all the programs that you want in this environment at the same time. Installing 1 program at a time can lead to dependency conflicts.

environments.yml file creating environments
#environments.yml file creating environments `Newenv`. The first line of the `*.yml` file sets the new environment's name  
$ conda env create -f environments.yml
#activate 
$ conda activate myenv
#verify
$ conda env list
specify environments location

the default path maybe /home/username/miniconda/envs/Newenv. you c

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值