1월, 2019의 게시물 표시

데이터 분석을 위한 환경 구축하기

이미지
데이터 분석을 위한 환경 구축 시작 데이터 분석을 위해 이용되는 도구들은 다양하나, 앞으로 ML과 관련한 부분도 함께 다루기 위해 Jupyter Notebook 기반의 GUI Tool 환경을 구축 하려고 합니다. 환경 구축 하기 가이드 : https://medium.com/@margaretmz/anaconda-jupyter-notebook-tensorflow-and-keras-b91f381405f8 가이드를 따르는 동안 발생한 문제 1. tensorflow 설치시 에러 $ pip install tensorflow Collecting tensorflow Could not find a version that satisfies the requirement tensorflow (from versions: ) No matching distribution found for tensorflow #python3 -m pip install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.12.0-py3-none-any.whl 해결 방법 https://www.tensorflow.org/install/pip https://stackoverflow.com/questions/38896424/tensorflow-not-found-using-pip 2. python version 안 맞아서 tensorflow import 시 에러 해결 방법 conda create -n [name] python=3.5 python 3.5.6 버젼으로 환경을 구성하면 이슈가 없음 3. tensorflow sample code 수행시 로그 메시지 발생 4. jupyter notebook 환경에서 tensorflow import 시 not found module 에러  해결방법 세팅한 환경 내에 jup...