안녕하세요.
정말 오랫만에 포스팅을 올리네요.
다음과 같이 윈도우10 환경에서 anaconda를 이용해 jupyter notebook 으로 tensorflow를 구현할 수 있는 환경 설치 가이드를 정리합니다.
Install latest anaconda windows for python 3.x
- Create conda virtualenv with python 3.5:
conda create -n tf python=3.5 anaconda
- Activate virtualenv:
activate
tf
- Install tensorflow CPU:
pip install tensorflow
- Exit virtualenv:
deactivate
tf
Create jupyter notebook startup script
o If serving from this local directory: C:/tensorflow
o Create batch file named as "run-jupyter.bat" which contains as below.
@echo
off
cmd /k
"cd /d C:\tensorflow & activate tf & jupyter notebook"
· Double click to run "run-jupyter.bat" and enjoy your tensorflow coding on your browser
'Web of Intelligence > Deep_Learning' 카테고리의 다른 글
GCP ML 엔진 튜토리얼: 텐서플로우 고수준 API로 작성된 CIFAR-10 모델의 초모수 최적화 하기 (0) | 2017.09.09 |
---|---|
구글 데이터랩 튜토리얼 - 금융 데이터 분석하기 (한글 번역본) (0) | 2017.08.09 |
Docker로 Windows 에서 Tensorboard 시각화 (0) | 2016.07.08 |
[TensorFlow] 클라우드 상에 개발 환경 구축하기 (2) | 2016.06.09 |
[스크랩] 기계학습의 발전 동향, 산업화 사례 및 활성화 정책 방향 (0) | 2016.06.09 |