anaconda/pkgs/free_main_pro以及anaconda/cloud/conda-forge_pytorch的作用简述

bash 复制代码
~/miniconda3/bin/conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
~/miniconda3/bin/conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
~/miniconda3/bin/conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
~/miniconda3/bin/conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
~/miniconda3/bin/conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/pro/

这里使用 config --add channels来添加URL以配置下载路径。

  • Anaconda 免费软件包 频道,包含 Anaconda 提供的免费软件包

    bash 复制代码
    https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
  • Anaconda 主要软件包频道,包含 Anaconda 提供的主要软件包

    https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/ ```

    bash 复制代码
    https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
  • conda forge 频道,包含由社区维护的 conda 软件包

    bash 复制代码
    https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
  • PyTorch 频道,包含 PyTorch 相关的软件包

    bash 复制代码
    https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
  • Anaconda 专业软件包频道,包含 Anaconda 提供的专业软件包

    bash 复制代码
    https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/pro/
相关推荐
测开小菜鸟31 分钟前
使用python向钉钉群聊发送消息
java·python·钉钉
Power20246661 小时前
NLP论文速读|LongReward:基于AI反馈来提升长上下文大语言模型
人工智能·深度学习·机器学习·自然语言处理·nlp
数据猎手小k1 小时前
AIDOVECL数据集:包含超过15000张AI生成的车辆图像数据集,目的解决旨在解决眼水平分类和定位问题。
人工智能·分类·数据挖掘
好奇龙猫1 小时前
【学习AI-相关路程-mnist手写数字分类-win-硬件:windows-自我学习AI-实验步骤-全连接神经网络(BPnetwork)-操作流程(3) 】
人工智能·算法
沉下心来学鲁班1 小时前
复现LLM:带你从零认识语言模型
人工智能·语言模型
数据猎手小k1 小时前
AndroidLab:一个系统化的Android代理框架,包含操作环境和可复现的基准测试,支持大型语言模型和多模态模型。
android·人工智能·机器学习·语言模型
YRr YRr1 小时前
深度学习:循环神经网络(RNN)详解
人工智能·rnn·深度学习
sp_fyf_20242 小时前
计算机前沿技术-人工智能算法-大语言模型-最新研究进展-2024-11-01
人工智能·深度学习·神经网络·算法·机器学习·语言模型·数据挖掘
多吃轻食2 小时前
大模型微调技术 --> 脉络
人工智能·深度学习·神经网络·自然语言处理·embedding
萧鼎2 小时前
Python并发编程库:Asyncio的异步编程实战
开发语言·数据库·python·异步