当前位置:   article > 正文

yolov8运行出错及解决,No module named ‘ultralytics‘和ImportError: Failed to initialize: Bad git executable_importerror: cannot import name 'yolo' from 'ultra

importerror: cannot import name 'yolo' from 'ultralytics' (unknown location)

成功解决 No module named 'ultralytics’和Failed to initialize: Bad git executable的问题,以此记录和分享。

问题:

ModuleNotFoundError: No module named 'ultralytics'
  • 1

解决:
在文件开头开间绝对路径,即ultralytics文件夹所在的文件夹路径。
在这里插入图片描述
问题:

ImportError: Failed to initialize: Bad git executable.
The git executable must be specified in one of the following ways:
    - be included in your $PATH
    - be set via $GIT_PYTHON_GIT_EXECUTABLE
    - explicitly set via git.refresh()

All git commands will error until this is rectified.

This initial warning can be silenced or aggravated in the future by setting the
$GIT_PYTHON_REFRESH environment variable. Use one of the following values:
    - quiet|q|silence|s|none|n|0: for no warning or exception
    - warn|w|warning|1: for a printed warning
    - error|e|raise|r|2: for a raised exception

Example:
    export GIT_PYTHON_REFRESH=quiet
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

解决:
在utils文件夹中的__init__.py的138行位置,即 import git 上方添加下面代码,即可解决。

os.environ["GIT_PYTHON_REFRESH"] = "quiet"
  • 1

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/507560?site
推荐阅读
相关标签
  

闽ICP备14008679号