環境
Windows10 May2019update
anaconda 4.75
python 3.6.8
Numpyを使用しようとしてimportをかけたときに以下のエラーに悩まされた
Something is wrong with the numpy installation. While importing we detected an older version of numpy in [numpyのpath]. One method of fixing this is to repeatedly uninstall numpy until none is found, then reinstall this version.
翻訳すると、Numpyのバージョン違いのものが複数あるので削除して整理することと書いてあります
そのため、conda uninstall numpyをしてimport numpyをしたのですが同じエラー....
よく見るとNumpyのpathがあるではないかと気づき、そこにアクセスするとNumpyが3つあった(恐怖)
そこですべてを削除して、conda install -c conda-forge numpy を導入すると....
解決した!!!!
そしてOpenCVも無事インストールできた....