解决Anaconda出现CondaHTTPError: HTTP 000 CONNECTION FAILED for url

server/2024/11/18 16:26:11/

解决Anaconda出现CondaHTTPError: HTTP 000 CONNECTION FAILED for url

第一类情况

在anaconda创建新环境时,使用如下代码

conda create -n charts python=3.7

https://i-blog.csdnimg.cn/direct/38acbbcb77134c0780cd080bf4880a46.png" width="957" />

错误原因:

        默认镜像源访问速度过慢,会导致超时从而导致更新和下载失败。

解决方案:

方法1:更换镜像源为清华镜像源,并且删除默认镜像源。

首先执行如下几条命令更换清华镜像源

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/conda config --set show_channel_urls yes

如果无法运行成功:

        镜像URL要是https改为http

更改镜像源配置文件

然后在“C:\Users\Administrator(你的用户名)”目录下找到“.condarc”文件并打开,若channels下面有-default,删除-default,保存即可

https://i-blog.csdnimg.cn/direct/8e57f366460c4cdfa141f15904ae4f82.png" width="348" />

https://i-blog.csdnimg.cn/direct/e001236356f94833afbf4a1020575981.png" width="505" />

使用pycharm或者命令行中的conda创建虚拟环境,并且耐心等待即可

https://i-blog.csdnimg.cn/direct/c3b82db597ca4e7e9fcd6a7c5d014756.png" width="681" />

方法2:先用vim打开./condarc文件,然后手动添加源

#open .condarc file
vi /home/xuran/.condarc#add the following code
ssl_verify: true
channels:- http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/- http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/- http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/

show_channel_urls: true

第二类情况:

        抓包的时候开了代理,只要在浏览器设置里关掉代理就可以了

  【常见模块错误】

如果出现模块错误

https://img-blog.csdnimg.cn/direct/df413fc3bbea46f7962bc7fe31fa6a01.png" width="1065" />

python">进入控制台输入:建议使用国内镜像源pip install 模块名称 -i https://mirrors.aliyun.com/pypi/simple我大致罗列了以下几种国内镜像源:清华大学
https://pypi.tuna.tsinghua.edu.cn/simple阿里云
https://mirrors.aliyun.com/pypi/simple/豆瓣
https://pypi.douban.com/simple/百度云
https://mirror.baidu.com/pypi/simple/中科大
https://pypi.mirrors.ustc.edu.cn/simple/华为云
https://mirrors.huaweicloud.com/repository/pypi/simple/腾讯云
https://mirrors.cloud.tencent.com/pypi/simple/


http://www.ppmy.cn/server/142950.html

相关文章

基于Java的小区家政服务预约平台

一、作品包含 源码数据库设计文档万字PPT全套环境和工具资源部署教程 二、项目技术 前端技术:Html、Css、Js、Vue、Element-ui 数据库:MySQL 后端技术:Java、Spring Boot、MyBatis 三、运行环境 开发工具:IDEA/eclipse 数据…

初识Linux · 信号处理

目录 前言: 捕捉信号 再谈地址空间 谈谈键盘输入数据 理解OS正常的运行 理解系统调用 OS如何运行的 前言: 按照信号学习的时间戳,从信号的预备知识,到信号的产生,到了信号的保存,终于,我…

基于机器学习的虚拟传感器用于门开启检测和异常检测

论文标题:Virtual sensor for door opening detection and anomaly detection using machine learning(基于机器学习的虚拟传感器用于门开启检测和异常检测) 作者信息: Almir Neto,来自巴西马拉尼昂联邦教育、科学与…

ssm115乐购游戏商城系统+vue(论文+源码)_kaic

毕业设计(论文) 乐购游戏商城系统 学 院 专 业 班 级 学 号 用户姓名 指导教师 完成日期 …

Leetcode 3357. Minimize the Maximum Adjacent Element Difference

Leetcode 3357. Minimize the Maximum Adjacent Element Difference 1. 解题思路2. 代码实现 题目链接:3357. Minimize the Maximum Adjacent Element Difference 1. 解题思路 这一题思路上和题目3356相似,同样是一个二分查找的题目,我们定…

go 集成swagger 在线接口文档

安装swaggo go install github.com/swaggo/swag/cmd/swaglatest 编写swag import ("github.com/gin-gonic/gin""goWeb/internal/service""goWeb/model/response" )// UserRouter 路由 func UserRouter(ctx *gin.RouterGroup) {ctx.GET("/…

QT学习——一个简单的串口助手

从本篇开始,将会记录自己关于QT开发相关的学习记录以及demo 今天分享的是如何使用QT开发一个简单的串口助手 开发环境 Ubantu18.0.4 QT5.12 1.配置文件中增加serialport模块 MyApplication.pro QT core gui serialport 2.绘制布局 如下图所示 布局代码…

libcurl.net入门使用

libcurl.net入门使用 关于libcurl.net 一个引用libcurl.dll并封装为.NET使用的Curl库,方便在.NET应用程序里面执行Curl命令,没有其他库依赖,只是对libcurl.dll的封装和引用。 在大多数情况下,我们可以或者比较容易获取Web请求的…