Import Error: No module named numpy

前端 未结 24 2405
名媛妹妹
名媛妹妹 2020-11-28 01:53

I have a very similar question to this question, but still one step behind. I have only one version of Python 3 installed on my Windows 7 (sorry) 64-bit system.

24条回答
  •  时光说笑
    2020-11-28 02:28

    Faced with same issue

    ImportError: No module named numpy
    

    So, in our case (we are use PIP and python 2.7) the solution was SPLIT pip install commands :

    From

    RUN pip install numpy scipy pandas sklearn
    

    TO

    RUN pip install numpy scipy
    RUN pip install pandas sklearn
    

    Solution found here : https://github.com/pandas-dev/pandas/issues/25193, it's related latest update of pandas to v0.24.0

提交回复
热议问题