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
- 도커 컨테이너
- 딥스트림
- 딥러닝
- 비디오미리보기
- dkms
- 도커
- 네트워크
- yolov7
- IOU
- Linux
- pyMySQL
- Spring
- nfs mount
- C++
- 주피터 노트북
- tao_toolkit
- 리눅스
- 스프링
- Python
- 알고리즘
- 백준
- C
- deepstream
- 파이썬
- nouveau
- mAP@.5
- 정처기
- SQLD
- docker
- 타오툴킷
Archives
- Today
- Total
한 번만 더 해보자
[Linux] WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv 본문
Linux
[Linux] WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
정 하임 2023. 10. 30. 20:25원인
도커 컨테이너에서 opencv-python을 설치하려고 했는데 다음 에러가 뜸
에러 설명
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: <https://pip.pypa.io/warnings/venv>
pip를 루트 유저로 실행하는 것은 권한을 파괴할 수 있고 시스템 패키지 매니저와 상충하는 행동을 할 수 있다
해결방안
--root-user-action 설치
pip install --root-user-action=ignore opencv-python
반응형
'Linux' 카테고리의 다른 글
| [Linux] ERROR: Could not find a version that satisfies the requirement ultralytics (from versions: none) (1) | 2023.12.21 |
|---|---|
| 깃 명령어 정리 (0) | 2023.12.21 |
| [Linux] mount.nfs: Connection timed out (0) | 2023.10.30 |
| [Linux] 한글 깨짐 (0) | 2023.09.20 |
| E: Unable to locate package (0) | 2023.09.10 |