Torch not compiled with CUDA enabled 에러 해결하기
Torch not compiled with CUDA enabled 에러 해결하기 cuda 를 이용한 처리를 하려고 했는데 아래처럼 에러가 발생되었습니다. raise AssertionError("Torch not compiled with CUDA enabled")AssertionError: Torch not compiled with CUDA enabled위 에러를 해결하는 방법을 알아봅니다. 1. torch 버전이 cpu 버전이 경우 발생됩니다.기존 설치된 pytorch 를 제거합니다.pip uninstall torch torchvision torchaudiogpu 버전을 설치합니다.pip install torch torchvision torchaudio --index-url https://downl..