한 번만 더 해보자

[Linux] ERROR: Could not find a version that satisfies the requirement ultralytics (from versions: none) 본문

Linux

[Linux] ERROR: Could not find a version that satisfies the requirement ultralytics (from versions: none)

정 하임 2023. 12. 21. 21:46

상황

yolo v8을 설치하려는데 에러 발생함

 

 

에러코드

$ pip install ultralytics
WARNING: pip is being invoked by an old script wrapper. This will fail in a future version of pip.
Please see <https://github.com/pypa/pip/issues/5599> for advice on fixing the underlying issue.
To avoid this problem you can invoke Python with '-m pip' instead of running pip directly.
Defaulting to user installation because normal site-packages is not writeable
ERROR: Could not find a version that satisfies the requirement ultralytics (from versions: none)
ERROR: No matching distribution found for ultralytics

 

 

 

 

해결방법

python3 -m pip install ultralytics
  • python3 -m : 파이썬에서 모듈을 실행한다는 뜻
반응형