When importing tensorflow, I get the following error: No module named 'numpy.core._multiarray_umath'

后端 未结 3 1985
抹茶落季
抹茶落季 2020-12-09 14:43

I have installed Ancaconda3 and Tensorflow. When I try to import Tensorflow in python shell I receive the following error:

ModuleNotFoundError: No mod

3条回答
  •  青春惊慌失措
    2020-12-09 15:15

    Kindly check whether you have installed the numpy package from pip. Because if you are running on conda evironment, then all packages need to be downloaded from there. Please use the below mentioned statement for this purpose

    conda install -c anaconda numpy

    Also make sure that the numpy version supports the Python version you are using.

提交回复
热议问题