1. nvidia Driver, CUDA, cuDNN 설치 전 설치유무 확인 명령어
<nvidia Driver confirm command>
nvidia-smi
<CUDA toolkit confirm command>
nvcc -V
<cuDNN confirm command>
cat /usr/local/cuda/include/cudnn.h | grep MAJOR -A 2
<nccl confirm command>
cat /usr/include/nccl.h | grep MAJOR -A 2
<file directory command>
whereis [file name]
watch -n 1 -d nvidia-smi
2. pytorch, tensorflow 설치 및 conda 가상환경 생성 명령어
<jupyter notebook install>
conda install jupyter notebook
<torch install command>
conda install pytorch torchvision
<create conda virtual environment command>
conda create -n [virtual environment name]
<tf install command>
conda install tensorflow-gpu==1.13.1
<가상환경 목록보기>
conda info --envs
<가상환경 실행>
activate [가상환경 이름]
<가상환경 종료>
deactivate [가상환경 이름]
<gpu사용 중인지 확인>
tf.test.is_gpu_available(
cuda_only=False,
min_cuda_compute_capability=None
)
https://niceman.tistory.com/85
https://dandyrilla.github.io/2018-10-01/conda-env/
anaconda 가상환경에 jupyter notebook 설치
'Today I.. > Today I Learned' 카테고리의 다른 글
211012) 하던 작업 임시 저장 및 적용 git stash, 원격 저장소와 local저장소의 소스코드를 일치 git fetch, git reset (0) | 2021.10.22 |
---|---|
211014) Docker multi-stage build (0) | 2021.10.15 |
211013) 리눅스 터미널 환경에서 다른 서버와 파일 복사/받기 (0) | 2021.10.13 |
[Coding Style] Return Early Pattern (2) | 2021.06.19 |
200503) 좋은 질문을 하는 방법 (0) | 2020.05.03 |