본문 바로가기

SQL/IT_tips

텐서플로우 자격증: 환경설정 (제일중요!!)

728x90
반응형

파이썬 가상환경 설정


 

1. 텐서플로우 2021년 테스트셋버전은 아나콘다 인터프리터상의 설치를 제한하고있다.

2. python3.8버전에서 가상환경을 셋팅해주는 것이 필수다 

python -m venv tf-cert

tf-cert라는 폴더의 가상환경 생성

cd tf-cert

tf-cert로 폴더 이동

Scripts\activate.bat

 

(tf-cert)C:\tf-cert> 커서가 뜨면 성공

pip install tensorflow==2.5.0
pip install tensorflow-datasets==4.3.0
pip install pillow==8.2.0
pip install pandas==1.2.4
pip install numpy==1.19.5
pip install scipy==1.7.0

tensorflow certificate enviroment document에서 요구하는 패키지를 해당 가상환경에 모두 설치해주면 완료('21.9.10 ver)

패키지 설치중 어떤 오류라도 뜨지 않도록 잘 체크해야하고 패키지설치시 왠만한 오류는 구글검색 or 레딧에 모두 나와있다.. 그걸 따라서 재설치하거나 삭제하면 문제 없이 수행된다. 

에러발생시>"ERROR: tensorflow 2.5.0 has requirement six~=1.15.0, but you'll have six 1.16.0 which is incompatible."경우

pip install --upgrade --force-reinstall absl-py==0.10.0 한번 쳐주고 다시 설치 


파이참 설치


1. 구글> 파이참 다운로드 > 가장최신버전 community (2021ver) 설치하면 된다. 

 


파이참 연결


파이참 실행> create new project> 아래그림처럼셋팅 

File>settings>plugins> "tensorflow certificate" 검색> 설치

File>Project:프로젝트명>python interpreter >python interpreter: python 3.8 지정 apply> ok

728x90