ERROR-raise LookupError(resource_not_found), 해결방법

CODEDRAGON Development/Python

반응형



 

 

에러 메시지

raise LookupError(resource_not_found)

raise LookupError(resource_not_found)

LookupError:

**********************************************************************

  Resource [93mpunkt[0m not found.

  Please use the NLTK Downloader to obtain the resource:

 

  [31m>>> import nltk

  >>> nltk.download('punkt')

  [0m

  For more information see: https://www.nltk.org/data.html

 

  Attempted to load [93mtokenizers/punkt/english.pickle[0m

 

  Searched in:

    - 'C:\\Users\\codedragon/nltk_data'

    - 'C:\\Python\\Python36\\nltk_data'

    - 'C:\\Python\\Python36\\share\\nltk_data'

    - 'C:\\Python\\Python36\\lib\\nltk_data'

    - 'C:\\Users\\codedragon\\AppData\\Roaming\\nltk_data'

    - 'C:\\nltk_data'

    - 'D:\\nltk_data'

    - 'E:\\nltk_data'

    - ''

**********************************************************************

 


 

 

 

 

 

해결방법

nltk 데이터 다운하기

https://codedragon.tistory.com/9626

 


반응형

'Development > Python' 카테고리의 다른 글

딥러닝 구동에 사용되는 고급 경사 하강법 개요 및 활용법  (0) 2019.11.23
PyMySQL  (0) 2019.11.22
산술 연산자(사칙연산자)  (0) 2019.11.19
nltk 데이터 다운하기  (0) 2019.11.18
클래스 정의  (0) 2019.11.17