Anaconda 出现HTTP000报错的解决方法

在使用Anaconda 安装python的时候遇到这个错误

chen@chen-Standard-PC-i440FX-PIIX-1996:~$ conda create -n sdwebui python==3.10.9

Solving environment: failed

CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://repo.anaconda.com/pkgs/r/noarch/repodata.json.bz2>
Elapsed: -

An HTTP error occurred when trying to retrieve this URL.
HTTP errors are often intermittent, and a simple retry will get you on your way.

If your current network has https://www.anaconda.com blocked, please file
a support request with your network engineering team.

SSLError(MaxRetryError('HTTPSConnectionPool(host=\'repo.anaconda.com\', port=443): Max retries exceeded with url: /pkgs/r/noarch/repodata.json.bz2 (Caused by SSLError(SSLError("bad handshake: Error([(\'SSL routines\', \'ssl3_get_server_certificate\', \'certificate verify failed\')])")))'))

 我看了下似乎是网络相关的问题,我第一时间想到的是源的问题,我主机的网络没问题,那就是源的问题

下面是更换Anaconda源为清华大学源

conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
conda config --set show_channel_urls yes
注意这里清华镜像源推荐使用http,而不是https,否则还有可能会报HTTP 000 CONNECTION FAILED的错误。

更改镜像源文件.condarc

这个文件.condarc 在Anaconda的安装目录里面

将defaults这一行删掉

chen@chen-Standard-PC-i440FX-PIIX-1996:~$ vim  .condarc

channels:
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
show_channel_urls: true

删掉之后效果就是这样

再次运行命令

chen@chen-Standard-PC-i440FX-PIIX-1996:~$ conda create -n python3.10.9 python==3.10.9
Solving environment: done

## Package Plan ##

  environment location: /home/chen/anaconda3/envs/python3.10.9

  added / updated specs: 
    - python==3.10.9


The following packages will be downloaded:

    package                    |            build
    ---------------------------|-----------------
    _openmp_mutex-4.5          |            2_gnu          23 KB  http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    wheel-0.38.4               |     pyhd8ed1ab_0          32 KB  http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    ld_impl_linux-64-2.39      |       hc81fddc_0         759 KB  http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    ncurses-6.4                |       h6a678d5_0         1.1 MB  http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
    libzlib-1.2.13             |       h166bdaf_4          64 KB  http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    pip-22.3.1                 |     pyhd8ed1ab_0         1.5 MB  http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    zlib-1.2.13                |       h166bdaf_4          92 KB  http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    libffi-3.4.2               |       h7f98852_5          57 KB  http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    libgomp-12.2.0             |      h65d4601_19         455 KB  http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    tzdata-2022f               |       h191b570_0         118 KB  http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    libgcc-ng-12.2.0           |      h65d4601_19         931 KB  http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    _libgcc_mutex-0.1          |      conda_forge           3 KB  http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    sqlite-3.45.3              |       h5eee18b_0         1.6 MB  http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
    python-3.10.9              |       h7a1cb2a_2        27.8 MB  http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
    bzip2-1.0.8                |       h7f98852_4         484 KB  http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    readline-8.1.2             |       h0f457ee_0         291 KB  http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    ca-certificates-2022.9.24  |       ha878542_0         150 KB  http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    tk-8.6.12                  |       h27826a3_0         3.3 MB  http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    xz-5.4.6                   |       h5eee18b_1         700 KB  http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
    setuptools-65.5.1          |     pyhd8ed1ab_0         731 KB  http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    libuuid-1.41.5             |       h5eee18b_0          29 KB  http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
    openssl-1.1.1w             |       h7f8727e_0         3.8 MB  http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
    ------------------------------------------------------------
                                           Total:        43.9 MB

The following NEW packages will be INSTALLED:

    _libgcc_mutex:    0.1-conda_forge      http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    _openmp_mutex:    4.5-2_gnu            http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    bzip2:            1.0.8-h7f98852_4     http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    ca-certificates:  2022.9.24-ha878542_0 http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    ld_impl_linux-64: 2.39-hc81fddc_0      http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    libffi:           3.4.2-h7f98852_5     http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    libgcc-ng:        12.2.0-h65d4601_19   http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    libgomp:          12.2.0-h65d4601_19   http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    libuuid:          1.41.5-h5eee18b_0    http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main        
    libzlib:          1.2.13-h166bdaf_4    http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    ncurses:          6.4-h6a678d5_0       http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main        
    openssl:          1.1.1w-h7f8727e_0    http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main        
    pip:              22.3.1-pyhd8ed1ab_0  http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    python:           3.10.9-h7a1cb2a_2    http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main        
    readline:         8.1.2-h0f457ee_0     http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    setuptools:       65.5.1-pyhd8ed1ab_0  http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    sqlite:           3.45.3-h5eee18b_0    http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main        
    tk:               8.6.12-h27826a3_0    http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    tzdata:           2022f-h191b570_0     http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    wheel:            0.38.4-pyhd8ed1ab_0  http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    xz:               5.4.6-h5eee18b_1     http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main        
    zlib:             1.2.13-h166bdaf_4    http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge

Proceed ([y]/n)? y


Downloading and Extracting Packages
_openmp_mutex-4.5    | 23 KB     | ################################################################################################################################################################################################################################### | 100% 
wheel-0.38.4         | 32 KB     | ################################################################################################################################################################################################################################### | 100% 
ld_impl_linux-64-2.3 | 759 KB    | ################################################################################################################################################################################################################################### | 100% 
ncurses-6.4          | 1.1 MB    | ################################################################################################################################################################################################################################### | 100% 
libzlib-1.2.13       | 64 KB     | ################################################################################################################################################################################################################################### | 100% 
pip-22.3.1           | 1.5 MB    | ################################################################################################################################################################################################################################### | 100% 
zlib-1.2.13          | 92 KB     | ################################################################################################################################################################################################################################### | 100% 
libffi-3.4.2         | 57 KB     | ################################################################################################################################################################################################################################### | 100% 
libgomp-12.2.0       | 455 KB    | ################################################################################################################################################################################################################################### | 100% 
tzdata-2022f         | 118 KB    | ################################################################################################################################################################################################################################### | 100% 
libgcc-ng-12.2.0     | 931 KB    | ################################################################################################################################################################################################################################### | 100% 
_libgcc_mutex-0.1    | 3 KB      | ################################################################################################################################################################################################################################### | 100% 
sqlite-3.45.3        | 1.6 MB    | ################################################################################################################################################################################################################################### | 100% 
python-3.10.9        | 27.8 MB   | ################################################################################################################################################################################################################################### | 100% 
bzip2-1.0.8          | 484 KB    | ################################################################################################################################################################################################################################### | 100% 
readline-8.1.2       | 291 KB    | ################################################################################################################################################################################################################################### | 100% 
ca-certificates-2022 | 150 KB    | ################################################################################################################################################################################################################################### | 100% 
tk-8.6.12            | 3.3 MB    | ################################################################################################################################################################################################################################### | 100% 
xz-5.4.6             | 700 KB    | ################################################################################################################################################################################################################################### | 100% 
setuptools-65.5.1    | 731 KB    | ################################################################################################################################################################################################################################### | 100% 
libuuid-1.41.5       | 29 KB     | ################################################################################################################################################################################################################################### | 100% 
openssl-1.1.1w       | 3.8 MB    | ################################################################################################################################################################################################################################### | 100% 
Preparing transaction: done
Verifying transaction: done
Executing transaction: done
#
# To activate this environment, use:
# > source activate python3.10.9
#
# To deactivate an active environment, use:
# > source deactivate
#

安装完成

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/669924.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

如何跨渠道分析销售数据 - 6年软件销售经验小结

如何跨渠道分析销售数据 - 6年软件销售经验小结&#xff08;1&#xff09; 【前言】 在我过去6年销售工作生涯中&#xff0c;从第一年成为公司销冠后&#xff0c;我当时的确自满的一段时间&#xff0c;认为自己很了不起。但是第一年的销售业绩并没有拿到提成&#xff0c;最终…

架构设计之安全性属性深度剖析:从理论到实践的完美融合

文章目录 引言一、安全性属性的理论探讨1.1 定义说明1.2 安全原则1.3 安全模型1.4 安全机制 二、安全性属性的实践应用2.1 安全风险评估2.2 架构设计中的安全考虑2.3 技术手段和工具2.4 团队协作与沟通2.5 安全政策和流程2.6 合规性和标准2.7 持续监控和改进 三、理论与实践的融…

c++中 unordered_map 与 unordered_set 用法指南

unordered_map 与 unordered_set 区别与联系 unordered_map 和 unordered_set 都是 C 标准模板库&#xff08;STL&#xff09;中的容器&#xff0c;它们使用哈希表作为底层数据结构&#xff0c;提供了快速的查找、插入和删除操作。下面是它们之间的联系与区别&#xff1a; 联系…

大数据分析统计

大数据分析统计 from datetime import datetimeimport pandas as pd import matplotlib.pyplot as pltpm25files [PM2.5_2021.csv, PM2.5_2022.csv, PM2.5_2023.csv] pm10files [PM10_2021.csv, PM10_2022.csv, PM10_2023.csv]def read_csv_file(files):# 每个文件都有表头…

ch5链路层和局域网

回顾TCP/IP参考模型&#xff0c;明确链路层和物理层在整个模型中的地位&#xff0c;简要提出链路层要解决的问题是单段链路的数据传输&#xff0c;物理层解决的是数字信号与电气信号之间的相互转换。 链路层概述 节点&#xff1a;主机和路由器(包括网桥和交换机) 链路&#xf…

移动端路由切换解决方案 —— 虚拟任务栈让你的 H5 像APP一样丝滑

目录 01: 前言 02: 通用组件&#xff1a;trigger-menu 和 trigger-menu-item 构建方案分析 03: 通用组件&#xff1a;构建 trigger-menu 和 trigger-menu-item 04: 前台业务下 H5 的应用场景 05: 通用组件&#xff1a;transition-router-view 构建方案分析 与 虚拟任务栈…

04Linux文件系统

课程目标 1、了解Linux操作系统的硬盘分区信息 2、了解Linux操作系统重各目录的作用 3、了解Linux的启动级别以及关机和重启命令 课程实验 在xshell中使用df -h &#xff0c;df -T&#xff0c;du -sh,fdisk -|,cd ,pwd 使用top &#xff0c;free&#xff0c;cat/proc/xxx…

ChaosBlade混沌测试实践

ChaosBlade: 一个简单易用且功能强大的混沌实验实施工具 官方仓库&#xff1a;https://github.com/chaosblade-io/chaosblade 1. 项目介绍 ChaosBlade 是阿里巴巴开源的一款遵循混沌工程原理和混沌实验模型的实验注入工具&#xff0c;帮助企业提升分布式系统的容错能力&…

面向对象技术

一、基本概念 二、设计原则 三、设计模式的概念与分类 四、创建型模式 五、结构型模式 六、行为型模式 七、Java程序设计

43-5 waf绕过 - 安全狗简介及安装

一、安全狗安装 安装安全狗需要开启 Apache 系统服务。如果 Apache 系统服务未开启,安装过程中可能会出现无法填入服务名称的问题,导致无法继续安装。为避免此问题,可以先在虚拟机中安装 PHPStudy。 安装PHPStudy 下载、安装phpstudy并启动(安装过程可以一路下一步,也…

使用Streamlit和MistralAI创建AI聊天机器人应用

大家好&#xff0c;创建交互式和用户友好型的应用程序通常需要复杂的框架和耗时的开发过程。Streamlit是一个Python库&#xff0c;它简化了以数据为重点的网络应用程序的创建过程&#xff0c;使开发人员和数据科学家能够快速将他们的想法转化为交互式仪表盘和原型。本文将介绍使…

【Java】数据加密

目录 数据加密介绍使用场景密码学历史古代密码学凯撒密码例子特点 维吉尼亚密码原理例子特点 现代密码学介绍 现代密码学的加密算法分类哈希算法优点缺点代码示例【封装写法】 对称加密算法对称加密算法的加密过程解密过程对称加密算法的优点&#xff1a;对称加密算法的缺点&am…

2024 cicsn Ezheap

文章目录 检查 libc2.35利用adddeleeditshow 思路exp结果 检查 libc2.35 利用 add 0x80个chunk&#xff0c;遍历选一个没有被用的&#xff0c;输入的size<0x501,然后malloc后会清零安装输入的size&#xff0c;然后输入内容&#xff0c;长度也是输入的size dele 指定索引…

你认识nginx吗,nginx是做什么的,nginx可以做什么 --1)nginx介绍

一.Nginx 介绍 Nginx&#xff08;发音同engine x&#xff09;是一个异步框架的 Web 服务器&#xff0c;也可以用作反向代理&#xff0c;负载平衡器 和 HTTP 缓存。该软件由 Igor Sysoev 创建&#xff0c;并于2004年首次公开发布。同名公司成立于2011年&#xff0c;以提供支持。…

JavaWeb_SpringBootWeb基础

先通过一个小练习简单了解以下SpringBootWeb。 小练习&#xff1a; 需求&#xff1a;使用SpringBoot开发一个Web应用&#xff0c;浏览器发起请求/hello后&#xff0c;给浏览器返回字符串"Hello World~"。 步骤&#xff1a; 1.创建SpringBoot项目&#xff0c;勾选We…

HTML 转义字符(escape characters)及其对应的符号(symbols)

以下是常见的 HTML 转义字符及其对应的符号&#xff0c;这些可以用于在 HTML 或 JSX 中避免解析错误和特殊字符的冲突&#xff1a; 空格 ( ): 或 引号: 单引号&#xff08;&#xff09;&#xff1a;&apos;、&lsquo;、、&rsquo;双引号&#xff08;"&#x…

互联网简史-分久必合,合久必分

六一儿童节&#xff0c;给孩子们讲讲互联网的历史。 任何当代技术都是古老技术的重组&#xff0c;这是真的。我从电话网络开始&#xff0c;两幅图完事。电波可以承载语音作为最开始&#xff0c;后面的事自然而然&#xff1a; 说实话&#xff0c;网络这种事&#xff0c;它的 …

面试必问:MySQL死锁是什么,如何解决?(史上最全)

MySQL死锁接触少&#xff0c;但面试又经常被问到怎么办&#xff1f; 最近有小伙伴在面试的时候&#xff0c;被问了MySQL死锁&#xff0c;如何解决&#xff1f; 虽然也回答出来了&#xff0c;但是不够全面体系化&#xff0c; 所以&#xff0c;小北给大家做一下系统化、体系化的…

Matlab里面的浮点数与FPGA定点数的相互转化应用(含Matlab代码,封装成函数可直接调用)

微信公众号获取更多FPGA相关源码&#xff1a; 1.前言 Matlab里面计算通常用的是浮点数&#xff0c;而FPGA在做数字信号处理时&#xff0c;为了节约资源&#xff0c;常常使用的是定点数。在实践中&#xff0c;我们经常需要将Matlab实现中的算法&#xff0c;用FPGA进行实现。 …

高效训练超越LoRA,北航发布MoRA

什么&#xff01;LoRA我都没有学懂&#xff0c;又出现了MoRA&#xff1f;&#xff1f;&#xff1f; LoRA作为当下最火热的大语言模型参数高效微调技术&#xff0c;正在以前所未有的速度迭代更新。从最初的LoRA到陆续推出的LoRA、DoRA、AsyLoRA等变体&#xff0c;LoRA家族可谓是…