Mac에서 Jupyter 설치하기

Jupyter 는 웹기반 IDE로서 운영체제가 어느것이라도 동일한 개발환경을 줍니다. 파이썬 기반으로 돌아가는 것이기 때문에, 먼저 파이썬 설치가 필요합니다. 맥에서는 python2 는 이미 설치되어 있고, python3 경우에는 선행설치가 필요합니다. 그리고 다음과 같이 가상환경 생성을 합니다.

1. 먼저 "pip" 설치가 필요하고, pip을 이용하여서 "virtualenv" 를 설치합니다.
 $ sudo easy_install pip
 $ sudo pip install --upgrade virtualenv 
2. 원하는 경로에 가상환경을 생성합니다. (python3 설치가 필요함)
 $ virtualenv --system-site-packages targetDirectory # for Python 2.7
 $ virtualenv --system-site-packages -p python3 targetDirectory # for Python 3.n
3. 생성된 가상환경을 활성시킵니다.
$ source ~/tensorflow/bin/activate      # If using bash, sh, ksh, or zsh
$ source ~/tensorflow/bin/activate.csh  # If using csh or tcsh 
만약 "targetDirectory"를 python3test 라고 하였다면 다음과 같이 나타날 것입니다.
 (python3test)$ 
4. 활성화된 가상환경에서 다음과 같은 명령어로 텐서플로를 설치합니다.
$ pip3 install --upgrade pip      # for Python 3.n
$ pip3 install jupyter     # for Python 3.n
$ pip install --upgrade pip      # for Python 2.n
$ pip install jupyter     # for Python 2.n
설치가 완료되었습니다.  위 과정을 요약하면, "pip"을 설치하고, "pip" 을 이용해서 "virtualenv" 를 설치한다음 이를 이용해서 가상환경을 생성해서, 다시 "pip"을 이용해서 "jupyter"를 설치합니다.

Next Steps
설치된 텐서플로 이용은, 설치한 가상환경을 활성화 하여서 이용합니다. 
$ source ~/python3test/bin/activate      # bash, sh, ksh, or zsh
$ source ~/python3test/bin/activate.csh  # csh or tcsh 
다음과 같이 jupyter 를 활성화 합니다.
 (python3test)$ jupyter notebook
종료하고자 할 때에는 먼저 로그아웃을 한 다음에 "ctr + c"를 입력하여 jupyter를 종료시키고, 가상환경을 다음과 같이 종료합니다.
 (python3test)$ deactivate 
출처 - http://jupyter.readthedocs.io/en/latest/install.html

댓글

이 블로그의 인기 게시물

[Linux, AIX] 사용자 계정 생성 및 설정

[AIX] rpm 설치와 rpm 으로 패키지 설치 및 삭제

Ubuntu 에서 Fortran 시작하기