[Tensorflow] 딥러닝 환경구축하다가 일어난 오류들

#딥러닝 개인학습 중 일어난 오류들을 업데이트 하는 포스팅임.

 

 

# Tensorflow 설치 오류

[문제상황]

 anaconda 프롬로트에서 tensorflow를 설치하려는데 다음의 문구로 인해 문제발생

pip 자체가 안먹히니 cmd창, gitbash창에서도 동일한 결과.

Script file D:\경로\경로\Scripts\pip-script.py' is not present

 

 

[해결]

cmd창에서 다음과 같은 명령어를 실행하여 해결

easy_intall pip
pip install tensorflow

 

 

# conda install 명령어 오류

[문제상황]

conda install tensorflow 입력시, 다음의 코드가 나타남

environment: failed with initail frozen solve. Retrying with flexible solve

[해결]

conda update --all

입력하고 기다림.

(생략)
proceed? [Y/N] : Y

Y로 계속하라고 허락해줌.

 

끝난 후, 설치가 잘 되었는지 확인하려면 다음의 코드 작성

> ipython
ln [1] : import tensorflow as tf

 

 

# dll 오류

[문제상황]

tensorflow가 필요한 파일을 실행시, 다음과 같은 오류로 인해 진행불가.

Could not load dynamic library 'cudart64_110.dll'; dlerror: cudart64.110.dll not found

 

[해결]

developer.nvidia.com/cuda-11.0-download-archive?target_os=Windows&target_arch=x86_64&target_version=10&target_type=exenetwork

 

CUDA Toolkit 11.0 Download

Select Target Platform Click on the green buttons that describe your target platform. Only supported platforms will be shown. By downloading and using the software, you agree to fully comply with the terms and conditions of the CUDA EULA. Operating System

developer.nvidia.com

Ndivia 등을 사용할 때 추가 툴킷을 다운로드해야함.