Jupyter notebook 에서 멀티 파이써 환경에서 동작하는 방법을 구글링을 통해서 알게되었다.
Anaconda 가 미리 설치되어 있는 환경에서 동작한다고 가정한다.
Python 2.7의 경우
conda create -n py27 python=2.7
source activate py27
conda install notebook ipykernel
ipython kernel install --user
configure the python3.5 environment:
Python 3.5의 경우
conda create -n py35 python=3.5
source activate py35
conda install notebook ipykernel
ipython kernel install --user
참고:
http://stackoverflow.com/questions/30492623/using-both-python-2-x-and-python-3-x-in-ipython-notebook
'Python' 카테고리의 다른 글
파이썬 디버깅 ipdb 강제 종료 (0) | 2016.12.20 |
---|---|
Python 에서 Custom Exception (커스텀 익셉션) 만들기 (0) | 2016.10.10 |
Jupyter notebook (ipython notebook) (0) | 2016.10.08 |
python 현재 사용하고 있는 os 알아보기 (0) | 2016.09.22 |
Python으로 쉘 명령어 장기간 실행 행현상시 타임아웃 걸어 프로세스 강제 종료 (0) | 2016.07.25 |