시작은 미약하였으나 , 그 끝은 창대하리라

[파이썬 오류] Error: mkl-service + Intel(R) MKL: MKL_THREADING_LAYER=INTEL is incompatible with libgomp.so.1 library. Try to import numpy first or set the threading layer accordingly. Set MKL_SERVICE_FORCE_INTEL to force it. 오류 해결 본문

프로그래밍/파이썬

[파이썬 오류] Error: mkl-service + Intel(R) MKL: MKL_THREADING_LAYER=INTEL is incompatible with libgomp.so.1 library. Try to import numpy first or set the threading layer accordingly. Set MKL_SERVICE_FORCE_INTEL to force it. 오류 해결

애플파ol 2022. 11. 11. 20:53

오류 발생

해결법.

import os

os.environ['MKL_THREADING_LAYER']='GNU'

또는

os.environ['MKL_SERVICE_FORCE_INTEL']='1'

를 입력해준다.

'프로그래밍 > 파이썬' 카테고리의 다른 글

기타_파이썬) 파이썬 엑셀 데이터 출력  (0) 2022.02.04
06강 ) 예외 처리  (0) 2022.01.25
05강) 함수  (0) 2022.01.21
파이썬) 라이브러리 업뎃중  (0) 2022.01.17
04강) 반복문  (0) 2022.01.13
Comments