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 环境
基础教程推荐
- 修改列表中的数据帧不起作用 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- 求两个直方图的卷积 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- 包装空间模型 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
