프로그래밍/Python

Jupyter Install (macos)

seungdols 2022. 10. 25. 23:37

기본적으로 python이 설치 되어 있다고 가정한다. 

https://jupyter.org/install

 

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

 

pip install --upgrade pip
pip install notebook
jupyter notebook // running

 

특정 노트북 파일을 열고 싶을때, 

jupyter notebook notebook.ipynb

port를 바꾸고 싶다면, 아래처럼 입력하면 된다. 

jupyter notebook --port 9999

browser를 열지 않고 주피터 노트북을 실행 시킬때,

jupyter notebook --no-browser

 

ref. https://docs.jupyter.org/en/latest/running.html

반응형