YoLoV11之配置环境过程中的踩坑记录

已关注WX公众号::uydctyc,有问题留言,共同学习YoLo

为什么做视觉追踪
致敬
有些问题的解决思路

为什么做视觉追踪

爱好是乒乓球,一开始是计划做电子记分牌,后来接入deep seek,再然后直接接入视觉追踪

致敬

目标检测:YOLOv11(Ultralytics)环境配置,适合0基础纯小白,超详细

有些问题的解决思路

1、对于致敬博文中的步骤4.2 创建虚拟环境,更改镜像源后仍旧报错:UnavailableInvalidChannel: HTTP 404 NOT FOUND for channel anaconda/pkgs/free https://mirrors.ustc.edu.cn/anaconda/pkgs/free The channel is not accessible or is invalid.

You will need to adjust your conda configuration to proceed.
Use conda config --show channels to view your configuration’s current state,
and use conda config --show-sources to view config file locations.

致敬的题主提供了一种常见问题的解决思路,即更改c:users用户名.condarc:

channels:
  - defaults
show_channel_urls: true
channel_alias: http://mirrors.tuna.tsinghua.edu.cn/anaconda
default_channels:
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/r
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/pro
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/msys2
custom_channels:
  conda-forge: http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  msys2: http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  bioconda: http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  menpo: http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  pytorch: http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  simpleitk: http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud

而我们所遇到的则是一种很罕见的问题:更改了c:users用户名.condarc仍旧报此错误,后来直接清空了该文件,重新按下Win键,输入anaconda prompt,打开并新建空间后成功。

已关注WX公众号::uydctyc,有问题留言,共同学习YoLo

© 版权声明
THE END
如果内容对您有所帮助,就支持一下吧!
点赞0 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容