Developer MJ Story

Python Big Data분석을 위한 환경 설정(jupyter) 본문

Software/Python&Ruby

Python Big Data분석을 위한 환경 설정(jupyter)

집근처 2016. 10. 13. 11:18
반응형

안녕하세요. 집근처 개발자 입니다.

 

python기반 Big data 분석을 위한 환경 설정에 대해 알아 보겠습니다.

python기반으로 요즘 가장 많이 사용하는 것이 jupyter라는 것이 있습니다.

Jupyter는 GUI를 제공하여 쉽게 사용할 수 있어 인기인 것 같습니다.

오늘은 이 jupyter를 이용하기 위한 환경 설정에 대해 알아 보겠습니다.

 

  1. miniconda 설치
    1. http://conda.pydata.org/miniconda.html
  2. Conda update
    1. Onda update
  3. Python version확인
    1. Python --version
  4. numpy 설치
    1. pip install numpy
  5. pandas 설치
    1. pip install pandas
  6. matplotlib 설치
    1. pip install matplotlib
  7. jupyter 설치
    1. pip install jupyter

 

위 과정을 마쳤다면, jupyter를 실행해 보자.

Command 창에서 'jupyter notebook' 을 입력한다.

그럼 아래와 같은 화면이 출력 될 것이다.

 

그럼 jupyter가 실행 되고 있는 상황이다.

이제 chrome을 열고 http://localhost:888/ 로 접속해 보자

아래와 같은 화면이 출력 되면 이제 python을 이용해 Big data를 분석할 수 있는 환경이 마련된 것이다.

반응형