配置 conda 映象環境

哈哈哈hh發表於2021-12-13

映象下載、域名解析、時間同步請點選  阿里巴巴開源映象站

環境: conda/4.11.0 CPython/3.8.8 Windows/10
映象源選用阿里雲映象站anaconda映象:
參考:

使用配置檔案修改映象源

  • 使用 conda info 命令檢視 .condarc 配置檔案位置(一般為 $env:userprofile/.condarc)

  • 在 PowerShell 中使用 notepad $env:userprofile/.condarc 命令,透過記事本開啟 .condarc (若提示檔案不存在,則點選建立)

    • CMD 中可以使用 notepad %userprofile%/.condarc 命令

將以下內容填入 .condarc 檔案中

channels:
  - defaults
show_channel_urls: true
default_channels:
  - 
  - 
  - 
custom_channels:
  conda-forge: 
  msys2: 
  bioconda: 
  menpo: 
  pytorch: 
  simpleitk: 

  • channels 的 defaults 會引用 default_channels 中的 URL

  • show_channel_urls 顯示下載內容的 URL

使用命令列新增映象源(失敗)

失敗原因:custom_channels 的值新增失敗;custom_channels 下有仍有鍵值對,為巢狀關係,但 --add 只能新增一個 key;嘗試空格,引號,冒號,括號,斜槓等沒有找到方法可以巢狀新增

conda config --set show_channel_urls yes
conda config --add default_channels 
conda config --add default_channels 
conda config --add default_channels 
# conda config --add custom_channels conda-forge: 
# conda config --add custom_channels msys2: 
# conda config --add custom_channels bioconda: 
# conda config --add custom_channels menpo: 
# conda config --add custom_channels pytorch: 
# conda config --add custom_channels simpleitk:
  • 使用 conda config --remove channels  移除相應配置

清理索引快取

執行 conda clean -i 命令清除索引快取,確保使用的是映象站的索引。

原文連結:https://blog.csdn.net/m0_49270962/article/details/121882323


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/70003733/viewspace-2847329/,如需轉載,請註明出處,否則將追究法律責任。

相關文章