From what I understand, you have possibly used multiple package download managers, possibly to install something other than numpy but that has a dependency on numpy. Since you are using anaconda environment, it is a good practice to try to not to use other package managers such as pip in the same environment. When that happens, the problem is that pip adds the lib file as the path for the library and so, the system points to that numpy installation.(or in our case, does not know which one to choose)
So, use the equivalent of :
pip show <name of the package, i.e numpy>
conda list <name of the package, i.e numpy>
etc.
Use the above to check which versions of these libraries you have on your system. Then, use the equivalent commands to remove all these versions. Be careful about the dependencies!
pip uninstall <name of the package, i.e numpy>
conda uninstall <name of the package, i.e numpy>
etc.
Next, use the anaconda environment to download the version of numpy that you require. The dependencies are probably going to get jumbled up.
In the future, try to create a new anaconda environment if you see dependency version conflicts instead of using some other package managers to download.
Cheers! I hope that helps.