【Python】conda镜像配置,.condarc文件详解,channel镜像
.condarc 文件是 conda 配置文件,用于设置 conda 的工作环境和行为。它可以位于用户的主目录下,也可以位于 conda 环境的特定目录下。
.condarc 文件的主要配置项包括:
- channels: 指定 conda 安装包时使用的 channel(镜像源)列表。
- channel\_priority: 指定是否优先使用高优先级的 channels。
- ssl\_verify: 指定是否验证 SSL 连接。
- envs\_dirs: 指定 conda 环境存放的路径。
- pkgs\_dirs: 指定 conda 包存放的路径。
以下是一个.condarc文件的示例,其中配置了两个 channel,并指定了使用高优先级的 channels:
channels:
- defaults
- conda-forge
channel_priority: true
在中国大陆使用 conda 时,可能需要将 channels 配置为国内的镜像源以提高下载速度。例如,添加清华大学提供的 conda 镜像源:
channels:
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
- conda-forge
channel_priority: true
请注意,在编辑.condarc文件时,应该使用 YAML 格式。确保缩进使用空格,不要使用制表符。
评论已关闭