- Arawn's Dev Blog
- Outsider's Dev Story
- Toby's Epril
- Benelog
- NHN 개발자 블로그
- SK 플래닛 기술 블로그
- OLC CENTER
- 소프트웨어 경영/공학 블로그
- 모바일 컨버전스
- KOSR - Korea Operating System …
- 넥스트리 블로그
- 리버스코어 ReverseCore
- SLiPP
- 개발자를 위하여... (Nextree 임병인 수석)
- "트위터 부트스트랩: 디자이너도 놀라워할 매끈하고 직관…
- Learning English - The English…
- real-english.com
- 'DataScience/Deep Learning' 카테…
- Deep Learning Summer School, M…
- Deep Learning Courses
민서네집
TensorFlow - Windows에 설치 본문
Pip installation on Windows
https://www.tensorflow.org/versions/r0.12/get_started/os_setup.html#pip-installation-on-windows
Anaconda Python 3.5 version 64비트용을 설치한다.
https://www.continuum.io/downloads#windows
pip install --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.0rc0-cp35-cp35m-win_amd64.whl
설치 도중 아래와 같은 에러가 발생하면...
Collecting setuptools (from protobuf==3.1.0->tensorflow==0.12.0rc0)
Using cached setuptools-29.0.1-py2.py3-none-any.whl
Installing collected packages: setuptools, protobuf, tensorflow
Found existing installation: setuptools 27.2.0
Cannot remove entries from nonexistent file c:\users\heeseok\anaconda3\lib\site-packages\easy-install.pth
https://github.com/ContinuumIO/anaconda-issues/issues/542
Adding the --ignore-installed option will sucessfully upgrade setuptools and the problem will be solved for the lifetime of that particular conda environment.
아래와 같이 한 후, pip install 로 tensorflow를 다시 설치해주면 된다.
>pip install -U setuptools --ignore-installed
'머신러닝' 카테고리의 다른 글
[머신러닝] 시계열 예측 (0) | 2016.12.05 |
---|---|
강화학습을 금융(주식 투자)에 응용한 소스와 블로그 (0) | 2016.12.05 |
LSTM-RNN (Part 1: RNN) (0) | 2016.11.05 |
[논문반/논문세미나] Perceptual Losses for Real-Time Style Transfer and Super-Resolution (0) | 2016.10.10 |
모두연의 강화학습 튜토리얼 (0) | 2016.09.25 |