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
- 자산 책 추천
- 글로벌 MBA
- 블랙쉽
- 자기계발서 추천
- 목적 찾는 법
- 오디오 텍스트 변환
- 자신에게 할 질문
- 청소년 추천 도서
- 돈의 속성이란
- 강자의 언어
- 받아쓰기 설정
- 글로벌 MBA 비용
- MBA 비용
- 내 강점
- 몰입하는 방법
- 강점 5가지
- 몰입 책 후기
- 책 추천
- 맥 받아쓰기
- 내 장점 찾기
- 몰입 줄거리
- mac 받아쓰기 설정
- 20살 추천 도서
- 30대 필독서
- 자산늘리는법
- 30대 필독
- 온라인 파트타임 MBA
- 장점 5가지
- 30살 추천 도서
- 플로우 방법
Archives
- Today
- Total
Let's enjoy our life
[Python] OSError: [E050] Can't find model 'en_core_web_sm'. It doesn't seem to be a Python package or a valid path to a data directory. 에러 해결 방법 - Jupyter Notebook 주피터 노트북 본문
Study/Python
[Python] OSError: [E050] Can't find model 'en_core_web_sm'. It doesn't seem to be a Python package or a valid path to a data directory. 에러 해결 방법 - Jupyter Notebook 주피터 노트북
IT파스칼 2023. 10. 19. 22:48import spacy 를 사용하고 싶은데 자꾸 에러가 뜬다...
OSError: [E050] Can't find model 'en_core_web_sm'. It doesn't seem to be a Python package or a valid path to a data directory.
how to download python -m spacy download en in Jupyter
일단 이렇게 구글에 검색!
해결 방법
주피터 노트북에서 아래 코드 실행
conda install -c conda-forge spacy-model-en_core_web_lg
그럼 아래 처럼 성공 메세지가 나온다 yay!
그리고 커널 재시작!
그런데 반전
영어도 끝가지 읽자
에러가 en_core_web_lg
가 아니라 en_core_web_sm 였던 것.
다시 다운로드 고
conda install -c conda-forge spacy-model-en_core_web_sm
제발 에러 또 뜨지마라..
성공했당!
프로그래밍은 섬세하게..
https://anaconda.org/conda-forge/spacy-model-en_core_web_lg
'Study > Python' 카테고리의 다른 글
Cron Schedule (Jupyter lab) 파이프라인 Cron 시간 변경 방법 (0) | 2024.04.03 |
---|---|
[Python] ModuleNotFoundError: No module named 'inflect' 주피터 노트북 에러해결 (0) | 2023.10.20 |
[Python] ML - unsupervised text classification for word labeling / toptic modeling python 단어 라벨링 투척! (1) | 2023.10.18 |
Auto GLM (0) | 2021.02.22 |
더미변수 전환, 전환 되돌리기 파이썬 코드 (Dummy variable Python code) (0) | 2021.02.04 |
Comments