| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
| 31 |
- 정처기
- 딥러닝
- 파이썬
- 주피터 노트북
- C
- 알고리즘
- tao_toolkit
- 네트워크
- 스프링
- C++
- Spring
- 도커
- deepstream
- 딥스트림
- 타오툴킷
- mAP@.5
- pyMySQL
- Linux
- dkms
- docker
- SQLD
- 도커 컨테이너
- 비디오미리보기
- 리눅스
- yolov7
- IOU
- nfs mount
- Python
- nouveau
- 백준
- Today
- Total
목록Linux (33)
한 번만 더 해보자
에러코드root@b505a20ee44f:/home/ubuntu/deepstream/deepstream/sources/gst-plugins/gst-dsexample# nvcc --versionbash: nvcc: command not found 해결방법cuda 버전 확인cd /user/localll bashrc 또는 zshrc 수정vi ~/.zshrc # 또는vi ~/.bashrc 아래 문장 입력export PATH="/usr/local/cuda-10.1/bin:$PATH"export LD_LIBRARY_PATH="/usr/local/cuda-10.1/lib64:$LD_LIBRARY_PATH"아까 확인한 쿠다 버전을 입력 변경사항 적용source ~/.zshrc# 또는source ~/.ba..
에러코드ERROR: The Nouveau kernel driver is currently in use by your system. This driver is incompatible with the NVIDIA driver, and must be disabled before proceeding. Please consult the NVIDIA driver README and your Linux distribution's documentation for details on how to correctly disable the Nouveau kernel driver. 상황nvidia-smi를 설치하려는데 위와 같은 에러코드가 발생했다. nouveau가 활성화 되어있기 때문인데 비활성화 시키면 설치가 정상적으로..
상황jupyter notebook을 실행하려고 하는데 아래와 같은 에러 발생 에러코드ubuntu@ip-172-31-25-159:~/jupyter $ jupyter notebook --ip 0.0.0.0 --allow-root --port 8888/home/ubuntu/.local/lib/python3.6/site-packages/pkg_resources/__init__.py:119: PkgResourcesDeprecationWarning: 0.18ubuntu0.18.04.1 is an invalid version and will not be supported in a future release PkgResourcesDeprecationWarning,Error executing Jupyter comm..
상황tao-toolkit에서 아래 명령어를 실행시키는데 command not found 에러코드 발생!ngc registry model list nvidia/tao/pretrained_classification:* 에러코드/bin/bash: ngc: command not found 해결방안!wget --content-disposition && unzip ngccli_linux.zip && chmod u+x ngc-cli/ngcwget : ‘Web Get’의 약어. 웹 상의 파일을 다운받을때 사용하는 명령어wget [옵션] [url]--content-disposition : url 주소를 기준으로 받을 때 (원래는 파일 이름으로 다운됨)unzip : 다운받은 파일 압축 해제chmod : 권한 변경&& ..