I'm on a windows 10 machine and trying to install caffe for deep learning. The installation steps asked me to install Miniconda, so I did. I already had Anaconda2 installed on my system.
Now when I try to build the solution (using Visual Studio 2013) for caffe I get the following error:
Error 232 error C1083: Cannot open include file: 'numpy/arrayobject.h': No such file or directory C:\caffe-master\python\caffe\_caffe.cpp 10 1 pycaffe
This is because Miniconda doesn't have numpy installed on it, even though I installed it using the following command:
conda install --yes numpy scipy matplotlib scikit-image pip
But when I open the Miniconda2 console and run import numpy, I get an error saying it is not installed.
So my question eventually is: How do I install Numpy and Scipy on Miniconda2 when I already have Anaconda2 installed on my system?
Step by step instructions would be highly appreciated.