Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | 30 |
Tags
- SQLD
- 딥러닝
- 알고리즘
- C++
- Python
- nfs mount
- yolov7
- 정처기
- nouveau
- docker
- pyMySQL
- 리눅스
- tao_toolkit
- 도커 컨테이너
- 백준
- C
- deepstream
- Spring
- dkms
- IOU
- 주피터 노트북
- 네트워크
- 타오툴킷
- 비디오미리보기
- 스프링
- 도커
- 딥스트림
- Linux
- mAP@.5
- 파이썬
Archives
- Today
- Total
한 번만 더 해보자
[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 : 파이썬에서 모듈을 실행한다는 뜻
반응형