Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Word2Vec
- word embedding
- sentiment analysis
- 대학원
- 품사태깅
- 전처리
- 우울증
- 자연어처리
- 수기
- 석사
- pytorch
- 인공지능
- CUDA
- NLP
- Classification Task
- naver movie review
Archives
- Today
- Total
슬기로운 연구생활
[ Pandas ] ImportError: No module named pandas 본문
* Error Message
‘ImportError: No module named pandas’
* Problem
pandas가 설치되어 있는데도 pandas module이 없다고 나오는 경우가 있다.
* Solution
두가지 방법이 있는데 대부분 첫번째 방법으로 해결된다.
최신버전으로 업데이트해 설치한다.
pip install --upgrade pandas # 최신 버전으로 업그레이드.
pip install pandas==0.23 # 지정된 버전으로 업그레이드.
가상환경을 만들 때 pip가 제대로 설치되지 않은 경우
source activate py3
pip install --upgrade pip
python -m ensurepip
python -m ensurepip --upgrade
python -m ensurepip --default-pip
* URL
'슬기로운 에러 생활' 카테고리의 다른 글
[ Scipy ] scipy import error (0) | 2020.05.24 |
---|---|
[ Tensorflow ] tensorflow load error (0) | 2020.05.24 |
[ Vmware ] Failed to lock the file 오류 (0) | 2019.12.05 |
[ Pytorch ] ImportError: dll load failed: 지정된 모듈을 찾을 수 없습니다 (0) | 2019.09.11 |
[ Tensorflow ] TypeError: batch() got an unexpected keyword argument 'drop_remainder' (0) | 2019.09.10 |
Comments