ImportError: No module named pandas

ImportError: No module named pandas

  • Error Message : ‘ImportError: No module named pandas’

Problem

  • pandas가 설치되어 있는데도 pandas module이 없다고 나오는 경우가 있다.

Solution

두가지 방법이 있는데 대부분 첫번째 방법으로 해결된다.

  1. 최신버전으로 업데이트해 설치한다.
pip install --upgrade pandas # 최신 버전으로 업그레이드.
pip install pandas==0.23 # 지정된 버전으로 업그레이드.
  1. 가상환경을 만들 때 pip가 제대로 설치되지 않은 경우
source activate py3
pip install --upgrade pip
python -m ensurepip
python -m ensurepip --upgrade
python -m ensurepip --default-pip

참고 사이트

#

Comments

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×