When importing tensorflow, I get the following error: No module named ‘numpy.core._multiarray_umath’
I also had the same issue. It got resloved once I upgraded the numpy from 1.15.4 to 1.16.1. If you’re using pip: pip install numpy –upgrade Numpy that came with Anaconda3 is of version 1.15.4. so i upgraded and it worked. Side note: if you’re also using scikit-image in your script, be aware that numpy … Read more