1. Anaconda 설치
반드시 파이썬을 설치하지 않은 상태에서 아나콘다를 설치할 것 !!
( anaconda는 수학과 과학 패키지를 포함한 파이썬이므로 파이썬을 먼저 설치해줄 필요가 없다. 그런데 python을 먼저 설치해버리면, anaconda에 내장된 python과 기존의 python이 충돌이 일어나 문제가 생기는 것이다. )
최근 텐서플로우가 파이썬3.7버전도 지원을 하게 되면서 현재 가장 최신 버전인 3.7 버전을 받으면 된다.
(참고) Windows 환경에서 Anaconda + Tensorflow 설치문제 해결하기
2. 텐서플로우 + 쥬피터 노트북 설치
출처 : https://zvi975.tistory.com/65
(anaconda Prompt)
> conda update conda
conda create -n py36 python=3.6 anaconda
> conda info --envs
> activate [가상환경 이름]
> conda install tensorflow
(삭제: conda remove 패키지이름)
conda install tensorflow==1.14 (2.0 버전은 tf.placeholder등 인식 불가)
> conda list
> jupyter notebook
* 필요하면 3.6 버전으로 다운그레이드 시켜서 'py36'이라는 이름의 conda가상환경을 만들어주도록 하자. (3.7 버전은 케라스와 호환X)
2-1. import tensorflow 안될 때
https://copycoding.tistory.com/79
* (참고) 파이참(Pycharm) 개발도구 설치 + Tensorflow 설치
(참고) Pycharm에 Tensorflow 설치하는 법
https://webnautes.tistory.com/1173
* (참고) 파이참 콘솔에 뜨는 경고 메세지 없애기
(참고) 텐서플로우 경고 메세지 없애기 : Your CPU supports instructions that this tensorflow binary was not compiled to use AVX