본문 바로가기
프로젝트 기록/딥러닝 모델 개발_공학설계캡스톤디자인(스마트카ICT)

[Python] Tensorflow 동작 코드 확인

by 소요이 2023. 3. 13.
728x90

처음 오류코드

 

 

완료 화면


 

차례대로 할 것


1) ppt 47장.Cuda toolkit 10.0 Archive 설치

 -> could not load dynamic library 'cudart64_100.dll'; dlerror: cudart64_100.dll

해당 오류코드 해결

 

 

2) ppt 50장. cuDNN설치. 반드시 ppt 참고해서 v7.6.5 10.0 버전으로 설치할 것

그리고 ppt 따라 해당 경로에 압축 풀기

 

 

3) Tensorflow GPU 가속 설치 (ppt 55 장 참고)

 

 

4) 이 다음 아나콘다에서 터미널 켜서 하기 (ppt 45장)

 

 


오류 코드:  downgrade the protobuf package to 3.20.x or lower.

 

 해결법) protobuf를 downgrade해야한다.

1. 기존의 protobuf 패키지 제거하기

pip uninstall protobuf

2. protobuf 버전을 낮춰서 설치하기

pip install protobuf==3.19.0

 

 


오류 코드: nvcuda.dll not found

 

python 파이썬 - 텐서 플로우 가져 오기 CPU 오류 - nvcuda.dll 찾을 수 없음 - 스택 오버플로 (stackoverflow.com)

 

Import tensorflow CPU error - nvcuda.dll not found

Apologies if this has been reported already at some other place, I have been looking for it quite some time, without success. I am trying to import tensorflow library (the CPU version only) and I am

stackoverflow.com