아나콘다는 파이썬에 관련된 라이브러리, 패키지를 손쉽게 설치해주는 툴입니다.

https://www.anaconda.com/distribution/

 

Anaconda Python/R Distribution - Free Download

Anaconda Distribution is the world's most popular Python data science platform. Download the free version to access over 1500 data science packages and manage libraries and dependencies with Conda.

www.anaconda.com

스크롤을 조금만 내려서 윈도우용 64비트 설치 파일을 다운받아주세요!

 

설치파일을 실행하여 Next를 쭉쭉 누르고

이 두 가지만 이렇게 설정해주시면 됩니다.

짜잔~

 

그리고 아나콘다가 제대로 설치되었는지 테스트할 겸 tensorflow를 설치해보겠습니다.

 

tensorflow 사용하실 분만 설치하시면 돼요!

 

위에 보이는 Anaconda Prompt를 관리자 권한으로 실행해줍니다.

python -m pip install --upgrade pip
conda create -n tensorflow python=3.7

 

위의 두줄을 입력해주고 proceed(y/n) Y를 입력해줍니다.

첫 번째 줄은 pip 업데이트, 두 번째 줄은 가상환경 만들기입니다.

activate tensorflow
pip install tensorflow==2.0

이제 실질적으로 tensorflow를 설치했습니다.

(그냥 pip install tensorflow하면 ImportError: DLL load failed: 지정된 모듈을 찾을 수 없습니다. 에러가 떠서 2.0으로 설치했습니다. 구글링 결과 엔디비아나 GPU문제인 거 같네요)

https://webnautes.tistory.com/1395 

참고!

python
import tensorflow as tf

여기서 import가 정상적으로 되면 tensorflow 설치 성공!

고생하셨습니다~!

 

추가적으로 여기서 Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 경고가 뜰 수 있다. 경고라서 무시하셔도 됩니다.

https://blog.naver.com/PostView.nhn?blogId=complusblog&logNo=221237740617&parentCategoryNo=&categoryNo=206&viewDate=&isShowPopularPosts=true&from=search

참고하시면 좋을듯!

 

추가적으로 AttributeError: module 'tensorflow' has no attribute 'Session' 오류가 날 수 있다.

https://blog.naver.com/jjgu24/221724029058

참고하시면 좋을듯

+ Recent posts