반응형
Deep Learning & Machine Learning/Tensorflow&PyTorch 개발환경2023. 10. 14. 07:51Tensorflow 에러 – ImportError: DLL load failed: 지정된 모듈을 찾을 수 없습니다

텐서플로우를 설치한 후, 텐서플로우 모듈시 다음과 같은 에러가 발생할 수 있습니다. >>> import tensorflow as tf ……………………………………………….. ImportError: DLL load failed: 지정된 모듈을 찾을 수 없습니다. 최종 수정 2020. 6. 21 Tensorflow 2.0을 지정하여 설치하면 해결되었지만 현재는 Tensorflow 2.0을 pip 명령으로 설치할 수 없습니다. pip install tensorflow==2.0 다음 주소에서 vc_redist.x64.exe를 다운로드 받아 설치하면 해결됩니다. https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads

반응형
image