I suspect this is an issue with your Anaconda installation -- I can reproduce the same issue on my Windows machine with a fresh install of Anaconda Python. In my case, reinstalling numpy from the Anaconda Python console seems to fix it. Try running the following:
pip uninstall numpy
pip install numpy
This fixed the issue for me; hopefully it does the same for you!