설치
맥 : 아나콘다 : jupyter-notebook 설치
iDevKim
2021. 1. 6. 20:33
jupyter 공식홈페이지 : jupyter.org/
Project Jupyter
The Jupyter Notebook is a web-based interactive computing platform. The notebook combines live code, equations, narrative text, visualizations, interactive dashboards and other media.
jupyter.org
가상환경 생성
$ conda info --envs => 리스트 확인
$ conda create --n env_jupyter python=3.7
가상환경 활성화
$ source activate env_jupyter
jupyter notebook 설치
(env_jupyter) idevkim@iDevKimui-iMac ~ % conda install jupyter notebook
jupyter notebook 실행
(env_jupyter) idevkim@iDevKimui-iMac ~ % jupyter notebook