在我的主目录上空间非常有限的集群上工作,所以我想将 ~/.conda/pkgs 文件夹的主目录中的默认设置设置为另一个包,我似乎无法弄清楚如何做到这一点。

我曾尝试将 .condarc 文件与 pkg_dirs 一起使用:

channels:
  - conda-forge
  - bioconda
  - defaults

pkg_dirs: my/new/folder

Ideally this would make the creation and installation of the .conda folder in the new path not my home directory

最佳答案

从这篇文章中获得清晰:并将在此处为任何尝试使用 Google 的人发布答案

anaconda .conda foler move from /home/usrxy to some other location

解决方法有两个:

  • 使家中的 .conda 文件夹不再可写
  • 通过以下任一方式将 pkg_dirs 正确添加到 .condarc 文件中
    conda 配置 --add pkgs_dirs/PATH/TO/FOLDER

  • 或直接编辑您的 .condarc 并使用正确的语法
    pkgs_dirs:
      - /PATH/TO/FOLDER
    

    关于conda - 设置 ~/.conda/pkgs 目录的路径,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57697342/

    10-13 09:51