본문 바로가기

반응형

전체 글

(130)
[에러 해결] OSError: Can't find model 'en_core_web_lg'. spacy error / spacy.cli로 download 1. OSError: Can't find model 'en_core_web_lg'. spacy error   scapy 패키지 관련 에러가 났다  오류 내용은 'en_core_web_lg'를 찾을 수 없다는 내용      2. cli.download  import spacy.clispacy.cli.download("en_core_web_lg")nlp = spacy.load("en_core_web_lg") import spacy.cli spacy.cli.download("en_core_web_lg")  먼저 이 코드를 실행해서 해당 모델을 다운로드 받는다   download를 실행하면 en-core-web-lg가 다운로드 되었으며 다시 시작하라는 말이 나온다        터미널을 exit한 후  nlp =..
[에러 해결] 파워포인트에서 그룹 객체 저장할 때 잘리는 경우 / 비트맵 객체로 저장하기 1. 오류 파워포인트에서 그룹 객체 저장할 때 잘리는 경우  그룹 객체를 '그림으로 저장'했을 때 끝 부분이 잘리는 경우가 발생했다.  2. 해결 그룹 사진을 복사(CTRL+C) 하고 붙여넣을 때 (CTRL+ALT+V) 비트맵을 선택해서 붙여넣기  그리고 그 비트맵 객체를 '그림으로 저장'한다    3. 여담 https://blog.naver.com/radiobj5/220768025140하면 조정한 크기의 이..." data-og-title="그림으로 저장 시 저장된 그림크기가 변경되는 문제" data-og-type="article" data-ke-align="alignCenter" data-ke-type="opengraph"> 그림으로 저장 시 저장된 그림크기가 변경되는 문제파워포인트에 그림을 삽입 후..
[에러 해결] AttributeError: module 'numpy.typing' has no attribute 'NDArray' / pip install numpy==1.21.0 AttributeError: module 'numpy.typing' has no attribute 'NDArray'     NumpyArray = npt.NDArray[Any] AttributeError: module 'numpy.typing' has no attribute 'NDArray'    numpy 패키지에서 NDArray를 찾을수 없다는 에러가 떴다    pip install numpy==1.21.0  numpy.typing에서 ndarray를 지원하려면 1.21 이상 버전이어야 한다  원래 numpy 1.20을 쓰고 있었는데, pip uninstall 후 설치해주었다   pip uninstall numpy pip install numpy==1.21.0pip uninstall numpy  pi..

반응형