惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
博客园_首页
C
Check Point Blog
小众软件
小众软件
博客园 - 叶小钗
Blog — PlanetScale
Blog — PlanetScale
Engineering at Meta
Engineering at Meta
美团技术团队
Martin Fowler
Martin Fowler
Vercel News
Vercel News
D
Docker
罗磊的独立博客
B
Blog RSS Feed
The Cloudflare Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 聂微东
Last Week in AI
Last Week in AI
T
Tailwind CSS Blog
雷峰网
雷峰网
博客园 - Franky

博客园 - freeliver54

AI生文:知行不一的警报演练,是空泛的安全假象 华为 人工智能入门级开发者认证 [转]职场英语100句 Microsoft Certified: Agentic AI Business Solutions Architect AB-100考试学习指南:智能体AI业务解决方案架构师 Microsoft Certified: AI Agent Builder Associate AB-620 AI 代理构建者助理级认证 [引]深港澳金融科技师 [转]个人金融信息保护技术规范 [引]langchain docs 文档 [转]Assessing Claude Mythos Preview’s cybersecurity capabilities 华为2025年年度报告 Power Platform Release Notes Planner 字节 TRAE 智能编码助手 通义灵码 Python Chroma 相关命令 [转]ITIL4有哪些内容 - 洛恺辰 [转]招聘总提 ITIL4 却不懂?搞懂它,IT 再也不用当 “背锅侠 DeepSeek 提取 交易所网站核心500词汇(名词与术语) [引]阿里 无影 Agent 开发套件 AgentBay [转]Register an application [转]Adobe Marketo 向 Azure 註冊應用程式,以取得用戶端 ID/應用程式 ID [引]Regenerate the SAS key used in HTTP trigger flows [引] Azure 服务 [转]学习指南 - PL-600:Microsoft Power Platform 解决方案架构师 软件开发人员 赋能自身 的 能力前展和后延 [转]Power Apps component framework (PCF) 手把手入门实例 [转]Power Apps Standards: Naming Conventions [转]Power Apps Dataverse Tutorial: Write and register a plug-in
国内网络环境下 MiniConda + Jupyter + ChromaDB 安装教程
freeliver54 · 2026-01-20 · via 博客园 - freeliver54

国内网络环境下 MiniConda + Jupyter + ChromaDB 安装教程

针对国内网络环境,使用国内镜像源加速下载。

第一部分:安装 MiniConda(使用国内下载源)

步骤 1:下载 MiniConda(国内镜像)

  1. 清华大学镜像源:

    https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/
  2. 中国科学技术大学镜像:

    https://mirrors.ustc.edu.cn/anaconda/miniconda/
  3. 推荐下载:

    • Miniconda3-py310_23.5.2-0-Windows-x86_64.exe

    • 对应 Python 3.10 版本

步骤 2:安装 MiniConda

  1. 双击运行下载的 .exe 文件

  2. 重要选项:

    • ✅ 为所有用户安装(可选)

    • ✅ 添加 Miniconda3 到系统 PATH 环境变量(必须勾选!)

    • ✅ 注册 Miniconda3 为默认 Python

  3. 点击 Install,等待安装完成

步骤 3:配置 Conda 国内镜像

打开 Anaconda Prompt(在开始菜单中搜索):

第二部分:创建 Python 环境

步骤 1:创建新环境(使用国内源)

步骤 2:激活环境

conda activate chroma-env

激活后,提示符前会显示 (chroma-env)

步骤 3:配置 pip 国内镜像

第三部分:安装 Jupyter

步骤 1:安装 Jupyter(使用 Conda 镜像)

步骤 2:配置 Jupyter 中文支持(可选)

步骤 3:生成 Jupyter 配置文件

第四部分:安装 ChromaDB 及依赖

步骤 1:安装 ChromaDB

步骤 2:安装依赖包

第五部分:备用安装方案(如果上述方法失败)

方案 A:使用离线包安装

  1. 下载离线包:

  2. 离线安装:

方案 B:手动下载安装(针对特别难装的包)

第六部分:验证安装

步骤 1:创建测试脚本

创建 test_installation.py 文件:

步骤 2:运行测试

python test_installation.py

第七部分:快速使用指南

启动 Jupyter:

创建快捷方式(可选):

  1. 在桌面创建 .bat 文件,内容:

@echo off
call conda activate chroma-env
start jupyter lab
pause