본문 바로가기
취미생활/파이썬

DLL load failed: %1은(는) 올바른 Win32 응용 프로그램이 아닙니다.

by 친절한껍데기 2021. 8. 27.

키움 API를 사용해보려고 32비트로 설정하였으나 아래와 같은 에러발생

Please note and check the following:
  * The Python version is: Python3.7 from "C:\Users\filus\anaconda3\envs\py37_32\python.exe"
  * The NumPy version is: "1.20.3"
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: %1은(는) 올바른 Win32 응용 프로그램이 아닙니다.

 

해결방법 :  넘파이를 다시깐다!

1. conda uninstall numpy

2. set CONDA_FORCE_32BIT=1

3. conda install numpy

4. conda install pandas

 

해결!