Creating conda environment using only symbolic links

前端 未结 1 1865
暗喜
暗喜 2020-12-20 02:16

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 i

相关标签:
1条回答
  • 2020-12-20 02:26

    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
    

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

    0 讨论(0)
提交回复
热议问题