我的编程空间,编程开发者的网络收藏夹
学习永远不晚

anaconda python更换清华源

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

anaconda python更换清华源

前言

在使用anaconda python环境过程中你会发现使用conda下载包的速度非常的慢,因为使用的是国外的服务器,所以这里要设置为国内的镜像。使用下面的配置命令即可:

添加Anaconda的TUNA镜像

conda config --add channels 'https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/'      //TUNA的help中镜像地址加有引号,需要去掉# 
conda config --add channels 'https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/'
conda config --setshow_channel_urls yes      //设置搜索时显示通道地址

添加后

(base) C:\Users\aikera>conda config --show channels
channels:
  - 'https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/'
  - 'https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/'
  - defaults
  - conda-forge

还有简单粗暴地方法:直接修改conda的配置,一般在当前用户路径下,比如C:\Users\Administrator.condarc
.condarc具体内容如下:

channels:
  - 'https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/'
  - 'https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/'
  - defaults
  - conda-forge

验证

conda config --show
(base) C:\Users\aikera>conda config --show
add_anaconda_token: True
add_pip_as_python_dependency: True
aggressive_update_packages:
  - ca-certificates
  - certifi
  - openssl
allow_non_channel_urls: False
allow_softlinks: False
always_copy: False
always_softlink: False
always_yes: None
anaconda_upload: None
auto_update_conda: True
changeps1: True
channel_alias: https://conda.anaconda.org
channel_priority: True
channels:
  - 'https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/'
  - 'https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/'
  - defaults
  - conda-forge
client_ssl_cert: None
client_ssl_cert_key: None
clobber: False
create_default_packages: []
custom_channels:
  pkgs/r: https://repo.anaconda.com
  pkgs/msys2: https://repo.anaconda.com
  pkgs/main: https://repo.anaconda.com
  pkgs/pro: https://repo.anaconda.com
  pkgs/free: https://repo.anaconda.com
custom_multichannels:
  local: []
  defaults: ["https://repo.anaconda.com/pkgs/main", "https://repo.anaconda.com/pkgs/free", "https://repo.anaconda.com/pkgs/r", "https://repo.anaconda.com/pkgs/pro", "https://repo.anaconda.com/pkgs/msys2"]
default_channels:
  - https://repo.anaconda.com/pkgs/main
  - https://repo.anaconda.com/pkgs/free
  - https://repo.anaconda.com/pkgs/r
  - https://repo.anaconda.com/pkgs/pro
  - https://repo.anaconda.com/pkgs/msys2
disallowed_packages: []
download_only: False
envs_dirs:
  - D:\ProgramData\Anaconda2\envs
  - C:\Users\aikera\AppData\Local\conda\conda\envs
  - C:\Users\aikera\.conda\envs

测试:

安装numpy试试:

(base) C:\Users\aikera>conda install numpy
Solving environment: /
WARNING: The remote server could not find the noarch directory for the
requested channel with url: https://conda.anaconda.org/'https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/'

It is possible you have given conda an invalid channel. Please double-check
your conda configuration using `conda config --show`.

If the requested url is in fact a valid conda channel, please request that the
channel administrator create `noarch/repodata.json` and associated
`noarch/repodata.json.bz2` files, even if `noarch/repodata.json` is empty.
$ mkdir noarch
$ echo '{}' > noarch/repodata.json
$ bzip2 -k noarch/repodata.json
/
WARNING: The remote server could not find the noarch directory for the
requested channel with url: https://conda.anaconda.org/'https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/'

It is possible you have given conda an invalid channel. Please double-check
your conda configuration using `conda config --show`.

If the requested url is in fact a valid conda channel, please request that the
channel administrator create `noarch/repodata.json` and associated
`noarch/repodata.json.bz2` files, even if `noarch/repodata.json` is empty.
$ mkdir noarch
$ echo '{}' > noarch/repodata.json
$ bzip2 -k noarch/repodata.json
done

## Package Plan ##

  environment location: D:\ProgramData\Anaconda2

  added / updated specs:
    - numpy

The following packages will be downloaded:

    package                    |            build
    ---------------------------|-----------------
    numpy-1.15.0               |   py27h911edcf_0          36 KB  defaults
    numpy-base-1.15.0          |   py27hfef472a_0         3.8 MB  defaults
    llvmlite-0.24.0            |   py27hc56fc5f_0         9.2 MB  defaults
    numba-0.39.0               |   py27h39f3610_0         2.4 MB  defaults
    mkl_fft-1.0.4              |   py27h31cbb53_1         121 KB  defaults
    mkl-2018.0.3               |                1       178.1 MB  defaults
    conda-4.5.10               |           py27_0         1.0 MB  defaults
    blas-1.0                   |              mkl           6 KB  defaults
    ------------------------------------------------------------
                                           Total:       194.7 MB

The following NEW packages will be INSTALLED:

    blas:       1.0-mkl               defaults
    mkl_fft:    1.0.4-py27h31cbb53_1  defaults
    numpy-base: 1.15.0-py27hfef472a_0 defaults

The following packages will be UPDATED:

    conda:      4.4.11-py27_0         defaults --> 4.5.10-py27_0         defaults
    llvmlite:   0.20.0-py27_0         defaults --> 0.24.0-py27hc56fc5f_0 defaults
    mkl:        2018.0.0-h36b65af_4   defaults --> 2018.0.3-1            defaults
    numba:      0.35.0-np113py27_10   defaults --> 0.39.0-py27h39f3610_0 defaults
    numpy:      1.13.3-py27h9ac254c_0 defaults --> 1.15.0-py27h911edcf_0 defaults

Proceed ([y]/n)? y

Downloading and Extracting Packages
numpy 1.15.0: ################################################################################################# | 100%
numpy-base 1.15.0: ############################################################################################ | 100%
llvmlite 0.24.0: ############################################################################################## | 100%
numba 0.39.0: ################################################################################################# | 100%
mkl_fft 1.0.4: ################################################################################################ | 100%
mkl 2018.0.3: ################################################################################################# | 100%
conda 4.5.10: ################################################################################################# | 100%
blas 1.0: ##################################################################################################### | 100%
Preparing transaction: done
Verifying transaction: done
Executing transaction: done

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

anaconda python更换清华源

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

anaconda python更换清华源

前言在使用anaconda python环境过程中你会发现使用conda下载包的速度非常的慢,因为使用的是国外的服务器,所以这里要设置为国内的镜像。使用下面的配置命令即可:添加Anaconda的TUNA镜像conda config --ad
2023-01-31
2023-09-30

anaconda更换python版本

https://www.cnblogs.com/douzujun/p/7737889.html作者:王浩链接:https://www.zhihu.com/question/49144687/answer/165033340来源:知乎著作权归
2023-01-31

Python更换镜像源

目录 Windows Mac 这篇文章将解除你使用python的pip install xxx受到的网速限制,如果只是下载较小的第三方库,可以尝试pip --defa
2023-01-31

Python怎么配置清华镜像源

这篇文章将为大家详细讲解有关Python怎么配置清华镜像源,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。python可以做什么Python是一种编程语言,内置了许多有效的工具,Python几乎无所不能,该
2023-06-14

设置清华源,加快Python安装速度,使用Pip更便捷

使用Pip设置清华源,让Python安装更快捷概述:Pip 是 Python 的包管理工具,它可以帮助我们安装、升级和管理 Python 的各种包。然而,有时候使用默认的官方源来下载 Python 包会比较慢,这时候我们可以使用国内的镜像
设置清华源,加快Python安装速度,使用Pip更便捷
2024-01-17

通过配置清华源,提升Python的安装效率

利用Pip设置清华源,让Python安装更加高效概述:Pip 是Python的包管理器,通过Pip我们可以方便地安装、升级和删除Python包。然而,由于默认的Python官方源在国外,导致国内用户在使用Pip进行包的安装时,下载速度可能
通过配置清华源,提升Python的安装效率
2024-01-17

清华镜像源完美指南:让你的软件安装更流畅

清华镜像源使用攻略:让你的软件安装更畅快,需要具体代码示例在日常使用电脑的过程中,我们经常需要安装各种软件来满足不同的需求。不过,在安装软件时,我们常常会遇到下载速度慢、无法连接等问题,尤其是在使用国外镜像源的时候。为了解决这个问题,清华
清华镜像源完美指南:让你的软件安装更流畅
2024-01-16

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录