NumPy library ImportError: DLL load failed: The specified procedure could not be found

前端 未结 8 1907
伪装坚强ぢ
伪装坚强ぢ 2020-12-06 06:05

I\'m learning python using Visual Studio 2017 on Windows 10. When I\'m trying to import NumPy library into my code, this error appears. I have tried uninstalling and reinsta

8条回答
  •  星月不相逢
    2020-12-06 06:48

    The newest version (in python 3) seems to be broken. Install an old version:

    pip3 uninstall numpy
    pip3 install 'numpy<1.13'
    

    Keep in mind that was written in 2017. There might be a newer version that is not broken now.

提交回复
热议问题