320x100
반응형
관련 글
[ 목차 ]
0. 에러 메시지
1. 판다스(panda) 설치
[ 본문 ]
0. 에러 메시지
ModuleNotFoundError: No module named 'pandas'
위와 같은 에러 메시지는
import pandas as pd
# ModuleNotFoundError: No module named 'pandas'
이렇게 판다스(Pandas) 라이브러리를 불러올 때 발생할 수 있다.
해석 그대로 판다스(Pandas)가 설치되지 않았다는 것이니
아래 과정을 통해서 판다스(Pandas)를 설치하도록 하자.
1. 판다스(pandas) 설치
pip install pandas
아나콘다를 사용한다면 Anaconda Prompt에 입력하면 자동으로 설치된다.
관련 글
다음 글
320x100
반응형
'유익한 정보 > 프로그래밍' 카테고리의 다른 글
23년 12월 텐서플로우(tensorflow) gpu 사용하기 (Feat.RTX 4060) (0) | 2023.12.23 |
---|---|
판다스(Pandas) 데이터프레임(DataFrame) 열(column) 삭제 (0) | 2023.08.10 |
판다스(Pandas) 데이터프레임 행,열방향 합치기/붙이기 (0) | 2023.08.10 |
판다스(Pandas) csv 파일(데이터) 불러오기/읽기 (0) | 2023.08.10 |