본문 바로가기
Python

[Python] Original error was: DLL load failed while importing _multiarray_umath: 지정된 모듈을 찾을 수 없습니다.

by DANEW 2023. 9. 18.

Error

Python3의 Anaconda3에서 Matplotlib을 사용시 아래와 같은 에러가 발생 

 

상세내용

IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!

Importing the numpy C-extensions failed. This error can happen for
many reasons, often due to issues with your setup or how NumPy was
installed.

We have compiled some common reasons and troubleshooting tips at:

    https://numpy.org/devdocs/user/troubleshooting-importerror.html

Please note and check the following:

  * The Python version is: Python3.8 from "C:\Users\BAN\Documents\Anaconda3\python.exe"
  * The NumPy version is: "1.20.1"

and make sure that they are the versions you expect.
Please carefully study the documentation linked above for further help.

Original error was: DLL load failed while importing _multiarray_umath: 지정된 모듈을 찾을 수 없습니다.
반응형

해결 방법

Anaconda3의 아래와 같은 bin 경로를 추가하여 해결하였다.

\anaconda3\Library\bin

 

반응형