본문 바로가기

Dev/Python

tensorflow 설치 오류

728x90
반응형

python 가상환경을 아나콘다에서 구성했다.

 

개발환경 

conda : 4.8.3

python : 3.8.3

 

pip install tensflow

tensorlflow 설치 오류

위와 같은 오류 발생시 콘다 버전 및 패키지 업데이트 후에 하면 된다고 찾게됨.

 

conda update -n base conda

conda update 화면

 

conda update -all

콘다 패키지 업데이트

 

단 tensorflow 1.9부터는 conda로 설치해야 한다.

conda install tensorflow

 

아래의 화면은 pyCharm에서의 화면이다. 

tensor flow 설치중 버전이 맞지 않아 오류...

 

위의 오류는 tensorflow를 설치 하려면 Python 버전이 3.5 ~ 3.7까지만 지원이 되고 있단다.

난 3.8을 사용중

 

콘다 가상 환경을 만든다. 

conda create -n dev_python_37_env python=3.7

dev_python_37_env는 가상환경 이름 

설치 버전은 python=3.7로 설정

가상환경 설치 화면

위의 설정을 pyCharm에서 사용하면 된다.

 

1. 생성한 가상환경으로 선택 방법

File > Settings -> project: 프로젝트명 선택 > Python Intepreter > 표시된 영역클릭 후 > add

pyCharm 설정 화면

 

인터프리터 환경 선택

2. 새로운 환경 선택으로 버전 변경

version을 선택하면 된다.

위의 설정을 한후 프로젝트를 재시작한다.

가상환경 화면

이후 텐서 플로우 설치를 하면 된다.!!

텐서플로우 설치 확인

 

만약 cuda 설치가 필요하다면

https://developer.nvidia.com/cuda-10.0-download-archive

 

CUDA Toolkit 10.0 Archive

Select Target Platform Click on the green buttons that describe your target platform. Only supported platforms will be shown. Operating System Architecture Distribution Version Installer Type Do you want to cross-compile? Yes No Select Host Platform Click

developer.nvidia.com

위의 페이지에 가서 cuda를 다운 후 설치한다.(Feat. 속도는 그때 그때 다르다 ㅜ.ㅜ)

 

 

 

728x90
반응형