2023년 1월 5일 목요일

[pytorch]CUDA11.2, CuDNN8.1.1, Ubuntu 20.04LTS에 pytorch 설치

 * CUDA11.2 버전에 적합한 pytorch를 설치해야 GPU 사용 가능

    - https://pytorch.org/get-started/locally/

    - 접속해서 아래와 같이 선택

    - 현재 서버의 CUDA 버전은 (nvcc -V 로 확인) 11.2 이지만 11.2에 적합한 pytorch는 몇몇 블로그를 확인해보니 아래와 같이 설치하라고 되어있음

pip install torch==1.7.1+cu110 torchvision==0.8.2+cu110 -f https://download.pytorch.org/whl/torch_stable.html

    - 하지만 위와 같이 해보니 pytorch를 불러오지 못함

    - 따라서 아래와 같이 CUDA 11.6 버전용 pytorch를 설치하고 기도메타 수행

1
 conda install pytorch torchvision torchaudio pytorch-cuda=11.6 -c pytorch -c nvidia
     - python 실행 후 cuda가 연결되었는지 확인, True 로 나옴




또는

pip install torch==1.7.1+cu110 torchvision==0.8.2+cu110 -f https://download.pytorch.org/whl/torch_stable.html
와 같이 11.0에 맞는 pytorch 버전을 설치해도 됨 (현재 상태)
 - PIL 설치, numpy 버전 업을 추가로 수행해야 할 수도 있음


댓글 없음:

댓글 쓰기