ImportError: DLL load failed: %1 is not a valid Win32 application for Python Matplotlib

后端 未结 3 2005
迷失自我
迷失自我 2020-12-01 22:10
>>> from matplotlib import pyplot as plt

Traceback (most recent call last):
  File \"\", line 1, in 
    from matplotlib imp         


        
相关标签:
3条回答
  • 2020-12-01 22:24

    On jupyter notebook I solved this problem by this way:

    1. Install "numpy-1.11.0b2+mkl-cp35-none-win_amd64.whl" from this page.

    2. If there is still no change, it's worth trying to reinstall matplotlib by pip.

    0 讨论(0)
  • 2020-12-01 22:26

    Just to add to ThePredator answer:

    I had both 32 bit and 64 bit Python 2.7 installed. When I ran python from cmd, Windows would load 32 bit python, but when trying to run something with matplotlib, this error would pop up. I have a 64 bit machine

    What I did to solve

    1. Uninstall all python versions (check within Control Panel -> Programs and Resources)
    2. Install coherent versions for python ant matplotlib (32 bit python should go with 32 bit matplotlib, etc.). Most recent Python installers come with pip, so make sure Python directory is in your PATH AND just enter pip install matplotlib in a command prompt and you should be fine.
    0 讨论(0)
  • 2020-12-01 22:43

    The error that you are getting is because you have installed the wrong component of matplotlib (there are the 32 bit and 64 bit components).

    This page provides you all binaries (32bit,64bit) for Windows. It also includes other packages apart from matplotlib if you may be needing them in the future.

    Try installing the proper version for your computer and it should work.

    Also don't forget to check whether the Python version you are using is suitable for your computer (32bit or 64bit)

    So the problem you are facing is one of these:

    • You have a 32 bit system, but you have installed the 64 bit component of matplotlib
    • You have a 64 bit system, but you have installed the 32 bit component of matplotlib
    • You have a 32 bit system, but you have installed the 64 bit component of Python itself
    • You have a 64 bit system, but you have installed the 32 but component of Python itself

    If you are not sure about how your computer's processor handles information, please check THIS WEBSITE

    To check which version of python you have installed, refer TO THIS QUESTION IN STACKOVERFLOW

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