PYTHON DLL load failed

后端 未结 1 2042
旧巷少年郎
旧巷少年郎 2021-01-02 00:27

I usually code in Matlab but I found a nice piece of PYTHON code that I would like to use. However having downloaded the package it is proving difficult to run. I\'m getting

相关标签:
1条回答
  • 2021-01-02 00:44

    As other have said, make sure your .whl file matches the version and 32/64bit of the python distribution you're using.

    Next, the problem I was having was I forgot to download and install the extra "numpy+mkl" package per the instruction: http://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy

    So for me it was numpy-1.11.0+mkl-cp35-cp35m-win_amd64.whl, which I downloaded and then:

    python -m pip install numpy-1.11.0+mkl-cp35-cp35m-win_amd64.whl
    

    I had already installed the regular numpy package via pip, but I just installed this one over it and everything started working and has been fine so far.

    0 讨论(0)
提交回复
热议问题