본문 바로가기
개발 환경 구축

파이썬 주피터 노트북 설치 (jupyter notebook)

by 두꺼비사장 2022. 11. 13.
728x90

파이썬을 시작 하려면 주피터 노트북을 설치 하여야 하는데, 설치가 어렵지 않으니 아래 4 단계로 차근차근 설치 하면 됩니다.

1.파이썬 설치 -> 2.jupyter 설치 -> 3.ANACONDA 설치 -> 4.주피터 노트북 실행

 

 

1. 파이썬 설치

Python Releases for Windows | Python.org

 

Python Releases for Windows

The official home of the Python Programming Language

www.python.org

위 사이트에 들어가서 Downloads Tab -> Download Python X.X version Button을 눌러 설치 파일을 다운받고 실행한다.

 

명령 프롬프트 창에서 python --version 을 입력 시 version이 나오면 정상 설치 

 

2. jupyter 설치

pip3 install jupyter 입력하여 jupyter 설치 하기

 

3. ANACONDA 설치

아래 Anaconda 사이트에서 ANACONDA 설치 하기

Anaconda | Anaconda Distribution

 

Anaconda | Anaconda Distribution

Anaconda's open-source Distribution is the easiest way to perform Python/R data science and machine learning on a single machine.

www.anaconda.com

다운받은 파일을 실행 하면 설치가 아래 단계에서 생각보다 오래 걸리는데, 문제가 있는것은 아니니 Cancel 버튼을 누르지 말고 기다린다.

 

 

 

 

4. 주피터 노트북 실행

신규 추가된 Jupyter Notebook 실행

 

아래와 같이 jupyter notebook이 실행 되고, New button을 눌러서  이제부터 주피터 노트북을 사용하면 된다.