티스토리 뷰
기계학습
[Gensim] unable to import 'smart_open.gcs', disabling that module 오류 해결
Demis Tae Kyu Eom 2020. 4. 19. 17:29gensim 패키지를 설치하면서 오류가 발생해서 정리합니다.
보통 패키지를 pip명령어로 아래와 같이 간편하게 설치합니다.
pip install gensim
근데 설치 후에 코드에서 import를 하면 아래와 같은 오류가 발생하는 경우가 있는데요.
unable to import 'smart_open.gcs', disabling that module
해당 에러는 gensim이 설치되면서 같이 설치되는 "smart_open"패키지의 버전이 맞지 않아서 생기는 오류라고 합니다.
간단하게 아래 명령어로 samrt_open의 버전을 낮춰주면 문제가 해결됩니다.
pip install smart_open==1.10.0
'기계학습' 카테고리의 다른 글
[Gensim] doc2vec, word2vec 학습시 c complier 사용 여부 확인하기 (0) | 2020.05.02 |
---|---|
[Pytorch] nn.Embedding.from_pretrained로 fasttext 불러오기 (0) | 2020.04.19 |
[Pytorch]“AttributeError: LSTM object has no attribute flat_weights_names” (0) | 2020.03.31 |
[Pytorch] F.cross entropy vs nn.Cross Entropy loss (0) | 2020.02.27 |
[Python] 데이터 셋 간단하게 나누기 (0) | 2020.02.21 |
댓글