일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- python __init__
- word embedding
- opencv SURF
- TensorFlow
- #실생활영어
- 영어명언
- 딥러닝
- tensorflow update
- text2img
- keras
- #영어
- 영어
- python 알고리즘
- python list
- #실생활 영어
- findContours
- c언어
- convexhull
- #프로젝트
- #1일1영어
- 완전탐색
- #opencv
- #일상영어
- object detection
- #Android
- Convolution Neural Network
- 이미지 생성
- #영어 명언
- #English
- tokenizing
Archives
- Today
- Total
When will you grow up?
raise LookupError(resource_not_found) 오류 본문
from nltk.corpus import stopwords 모듈을 사용할때
1 2 3 4 5 | from nltk.corpus import stopwords porter = PorterStemmer() stop = stopwords.works('english') | cs |
이런식으로 코드 사용 시
raise LookupError(resource_not_found) 오류를 가 발생하여 구글링을 해봤다.
오류는 아래와 같다.
해결 방안
커맨드 창에서
import nltk
nltk.download()
를 입력하면 아래 사진과 같은 창이 뜬다.(저는 anaconda Spyder를 사용한다)
현재 Cancel GUI 버튼이 download버튼일거다 설치를 하고,
Corpora탭으로 이동하여 필요한 정보 만 다운로드 하여 사용하면 된다.
'02. Study > Python' 카테고리의 다른 글
Python을 이용한 정규표현식(regular expression) (0) | 2019.08.12 |
---|---|
List Comprehension(리스트 컴프리헨션) (0) | 2018.01.12 |
List slicing(리스트 슬라이싱) (0) | 2018.01.12 |
'dict' object has no attribute 'iteritems' 오류 (0) | 2017.05.15 |
Python 에서 text 과정중 UnicodeDecodeError: 'cp949' codec can't decode byte 0xe2 in position 564 (0) | 2017.05.04 |
Comments