仅使用符号链接创建 conda 环境 [英] Creating conda environment using only symbolic links

查看:25
本文介绍了仅使用符号链接创建 conda 环境的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想创建一个与我的 root 环境完全相同的环境,但不制作任何包的硬拷贝(稍后我将添加一些不在 Anaconda 中的包).我认为我可以使用以下方法之一来做到这一点:

I want to create an environment which is an exact copy of my root environment, but not making any hard copies of packages (later I will add a few packages not in Anaconda). I thought I could do this with one of the following:

conda create -n newroot --clone root
conda create -n newroot --copy root
conda create -n newroot anaconda

但是所有这些下载包.如何创建当前 Anaconda 发行版的精确副本环境?(我知道以后我可以使用 conda install -n newroot <package name> 添加包)

But all of these download packages. How do I create an exact replica environment of the current Anaconda distribution? (I know later I can add packages with conda install -n newroot <package name>)

推荐答案

conda 尽可能(几乎总是)在内部使用硬链接,因此新环境的成本最低,所以我的建议是使用:

conda uses hardlinks internally when it can (nearly always) so the cost of new environments is minimal, so my recommendation is to use:

conda create -n newroot --clone root

不要使用 --copy,因为这会明确避免使用硬链接.

Do not use --copy since that explicitly avoids using hardlinks.

这篇关于仅使用符号链接创建 conda 环境的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆