scikit-image 모듈을 import 하려 하니 아래와 같은 오류가 발생했다
OMP: Error #15: Initializing libiomp5md.dll, but found libiomp5md.dll already initialized.
해결책
import os
os.environ['KMP_DUPLICATE_LIB_OK']='True'
'코딩 잡동사니 > 코딩 꿀팁' 카테고리의 다른 글
[디버깅]streamlit 서버와 로컬의 port번호가 다를 때 (0) | 2023.04.27 |
---|---|
Git 과거 데이터 및 히스토리 삭제 (0) | 2023.04.25 |
[Python 꿀팁] itertools로 조합(combination) 구하기 (0) | 2023.01.26 |
[Python 꿀팁] 많은 수의 약수를 구할 때 (0) | 2023.01.25 |
[Python 꿀팁] tqdm (0) | 2023.01.24 |