ubuntu-guide
  • 前言
  • linux常用操作
    • vim命令
    • 解压缩
    • 添加程序到应用列表
    • 自动挂载硬盘
    • dkpg命令
  • ubuntu配置
    • apt-get源加速
    • v2ray
    • zsh&oh-my-zsh
    • 显卡驱动&CUDA
    • Git
    • Anaconda
    • git-clone加速
    • pip源加速
    • conda源加速
Powered by GitBook
On this page

Was this helpful?

  1. ubuntu配置

conda源加速

Previouspip源加速

Last updated 5 years ago

Was this helpful?

参考资料:

在linux系统下,conda的配置文件存储在~/.condarc中,将下面的配置文件粘贴到配置文件中即可获得一个满速的conda install体验:

channels:
  - defaults
show_channel_urls: true
default_channels:
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/r
custom_channels:
  conda-forge: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  msys2: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  bioconda: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  menpo: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  pytorch: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  simpleitk: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
https://www.cnblogs.com/VVingerfly/p/12046586.html