IT이것저것

[Programming with Data] Jupyter Notebook

아쁠 2023. 6. 1.

그동안 윈도우를 사용했다가 M1 맥북으로 갈아타면서 Jupyter Notebook 설치를 다시 해야 했다.

 

💻 M1 맥북으로 Jupyter Notebook 다운하는 방법

1. Terminal에서 파이썬이 설치되어 있는지 확인을 한다.

python3

python3로 확인했다. 나는 이미 파이썬을 쓰고 있는지라 잘 설치되어 있다.

2. 설치되었다면 pip를 사용하여 Jupyter Notebook을 설치한다.

pip3 install jupyter

잘 설치되고 있는 모습을 볼 수 있다

3. Jupyter Notebook을 실행한다.

jupyter notebook

http://localhost:8888/ 에서 실행되고 있음을 알 수 있다

- 끝 -


💡 KNOWLEDGE++

1. Jupyter Notebook is a development environment. It provides a readable way to share both code and logic as an ipynb document.

2. Development environments provide a set of tools aiding in the development of software. They host a number of features including useful shortcuts, debugging tools, version control integration and support for lots of activities around software engineering.

3. Jupyter Notebooks support several programming languages via a set of different kernels:

(eg. Haskell, R, Go, Scala)

4. People normally edit cells in Jupyter Notebook in their web browser.

 

댓글