Miniconda config channels的查看、删除、添加

这里写自定义目录标题

    • [1. 背景](#1. 背景)
    • [2. 配置文件.condarc](#2. 配置文件.condarc)
    • [3 show channels 的工作机制](#3 show channels 的工作机制)
    • [4. 初始配置](#4. 初始配置)
    • [5. 参考连接](#5. 参考连接)

@创建于:2025.12.13

@修改于:2025.12.13

1. 背景

miniconda里面安装pandas的时候报错

复制代码
Collecting package metadata (current_repodata.json): done
Solving environment: unsuccessful initial attempt using frozen solve. Retrying with flexible solve.
Solving environment: unsuccessful attempt using repodata from current_repodata.json, retrying with next repodata source.
Collecting package metadata (repodata.json): /

若长时间卡在此步骤,可尝试:

1、清除conda缓存 conda clean --all ,然后重试。

2、一次性使用清华源conda install pandas==2.2.3 -c https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/

3、使用pip安装(更简单快速)pip install pandas==2.2.3 -i https://pypi.tuna.tsinghua.edu.cn/simple

2. 配置文件.condarc

.condarc是conda 应用程序的配置文件,在用户家目录(windows:C:\users\username\),用于管理镜像源。如果不存在,则打开conda的,执行一下:

bash 复制代码
conda config --show channels

3 show channels 的工作机制

很多人以为列表第一个 channel 优先级最高,其实是反的!Conda 默认采用 "后进先出" 的查找策略:

bash 复制代码
channels:
  - A
  - B
  - C

查找顺序是:A → B → C

4. 初始配置

对.condarc进行初始配置,是装完 Miniconda 做的第一件事,这个很重要。

bash 复制代码
# 添加清华镜像源(注意顺序!)
conda config --add channels defaults

conda config --add channels conda-forge

conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main


# 设置严格优先级
conda config --set channel_priority strict

# 验证是否生效
conda config --show channels

# 显示镜像源站点
conda config --set show_channel_urls yes

.condarc中的内容如下

python 复制代码
channels:
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
  - conda-forge
  - defaults
channel_priority: strict
show_channel_urls: true

推荐组合:

  • 清华源:速度快,更新及时;
  • conda-forge:社区维护,包最全,很多前沿库只在这里有;
  • defaults:作为最终保障。

5. 参考连接

Miniconda config show channels查看当前源配置

Conda Channels镜像源(通道)配置

【Python】conda镜像配置,.condarc文件详解,channel镜像

相关推荐
TechWayfarer4 小时前
查询IP所在地的3种方案:从API到离线库,风控场景怎么选?
开发语言·网络·python·网络协议·tcp/ip
程序员榴莲5 小时前
Python 单例模式
开发语言·python·单例模式
hh.h.5 小时前
昇腾CANN ops-transformer 仓的 MC2 算子:MoE 模型的全到全通信
python·深度学习·transformer·cann
NiceCloud喜云6 小时前
Claude Files API 深入:从上传、复用到配额管理的工程化指南
android·java·数据库·人工智能·python·json·飞书
专注VB编程开发20年6 小时前
windows下python自带标准库 ≈ 70% 纯.py 源码,30% .pyd(DLL)
python
萌新小码农‍7 小时前
人工智能数学基础+python实例(人工智能学习day3)
开发语言·人工智能·python
毋语天8 小时前
FastAPI 进阶实战:请求体、文件上传、响应模型与数据校验
python·fastapi·api开发·数据校验·pydantic
ZhengEnCi9 小时前
09a-斯坦福 CS336 作业一:BPE 分词器
python·神经网络
测试员周周9 小时前
【Appium 系列】第18节-重试与容错 — 移动端测试的稳定性保障
人工智能·python·功能测试·ui·单元测试·appium·测试用例