레이블이 #tensorflow인 게시물을 표시합니다. 모든 게시물 표시
레이블이 #tensorflow인 게시물을 표시합니다. 모든 게시물 표시

2020년 12월 18일 금요일

[Python 3.8.5] Tensorflow 설치 후 Runtime Error (Numpy installation fails to pass a sanity check)

문제 상황 : 

 Tensorflow 설치 후 정상 작동 확인 (version 확인)과정에서 아래와 같은 에러 발생


해결 과정 (링크 참조): 

https://developercommunity.visualstudio.com/content/problem/1207405/fmod-after-an-update-to-windows-2004-is-causing-a.html?page=1&pageSize=10&sort=votes&type=problem

  • pip list 확인시 numpy version 이 1.19.4 임을 확인

  • 에러 메시지에 나온 link에 제시된 solution 적용 (numpy 1.19.3 설치)
    pip uninstall numpy
    pip install numpy==1.19.3
  • 정상 작동 확인




2020년 11월 29일 일요일

[Python 3.8.5] Tensorflow 설치 후 import 에러 (DLL load failed)

 ** 참고 자료 (Reference) 

WEB, Git hub, TensorFlow,
"Win10: ImportError: DLL load failed: The specified module could not be found #22794"
URL : https://github.com/tensorflow/tensorflow/issues/22794

발생 경과 (Problem Description)

문제 (Problem)

After installation of Anaconda 3, python was executed on prompt window. Then thensorflow was imported as follow,
1
import tensorflow as tf
cs
Long error message occurred including 
"ImportError: DLL load failed: The specified module could not be found."

Anaconda 3 설치 후 Command창에서 python 실행
1
import tensorflow as tf
cs
실행시 아래와 같은 에러 메시지가 포함된 장문의 에러 발생
"ImportError: DLL load failed: The specified module could not be found."

해결 방법 (Solution)

Referring to Github/Tensorflow, "Visual C++ Redistributable for Visual Studio 2015, 2017 and 2019" was installed : download link.
I have installed x64 version as same as my computer setting.

Github 내용 참조하여 "Visual C++ Redistributable for Visual Studio 2015, 2017 and 2019" 설치
설치 download link, 아래 그림에서 내 컴퓨터 환경에 맞는 x64버전 설치 후 재부팅

경과 (Monitoring)

By checking tensorflow version, I have checked tensorflow was well imported.

이후 아래와 같은 warning은 발생하지만 제대로 tf로 import 된 것을 확인.