728x90
반응형

1. 파이썬(Python 3) 설치

https://www.python.org/downloads/

 

Download Python

The official home of the Python Programming Language

www.python.org

2. 주피터 노트북 설치

> pip install jupyter

2.1 주피터 경로 설정

> jupyter notebook --notebook-dir='D:\jupyter-notebook'

2.2 주피터 실행

경로 설명 명령어 입력시 웹 브라우저에서 주피터가 실행된다. (http://localhost:8888/)

2.3 주피터 Run 명령어

ctrl + enter  해당 셀 실행

 

3. 라이브러리 설치

3.1 설치된 라이브러리 확인

!pip list

3.2 라이브러리 설치

!pip install pandas
728x90
반응형