Creating conda environment using only symbolic links(仅使用符号链接创建 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 环境的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:仅使用符号链接创建 conda 环境


基础教程推荐
- 如何在 Python 中检测文件是否为二进制(非文本)文 2022-01-01
- 症状类型错误:无法确定关系的真值 2022-01-01
- 合并具有多索引的两个数据帧 2022-01-01
- 哪些 Python 包提供独立的事件系统? 2022-01-01
- 使用Python匹配Stata加权xtil命令的确定方法? 2022-01-01
- 将 YAML 文件转换为 python dict 2022-01-01
- Python 的 List 是如何实现的? 2022-01-01
- 使 Python 脚本在 Windows 上运行而不指定“.py";延期 2022-01-01
- 使用 Google App Engine (Python) 将文件上传到 Google Cloud Storage 2022-01-01
- 如何在Python中绘制多元函数? 2022-01-01