Could not load dynamic library 'cudart64_101.dll'; dlerror: cudart64_101.dll not found
 Ignore above cudart dlerror if you do not have a GPU set up on your machine.

 

 

다음과 같은 에러 발생시 GPU가 탑재된 경우 cudart64 10.1 버전이 없기 때문에 에러가 발생한다.

cudart64 101.dll 파일을 받아서 NVIDIA GPU Computing Toolkit -> CUDA -> v10.0 -> bin 폴더에 추가해주면 해결된다.

 

노트북 등 GPU가 없는 경우 tensorflow 의 gpu 기준이 아닌 cpu 기준을 사용한다

pip install tensorflow-cpu 를 통해 cpu 버전 텐서플로우를 인스톨하면 해결된다.

 

이로도 해결이 안되는 경우 tensorflow 2.0 버전을 설치해서 확인해보자

pip install tensorflow==2.0.0

 

+ Recent posts