git clone https://github.com/dmlc/mxnet.git
cd mxnet/
make
Makefile:23: mshadow/make/mshadow.mk: No such file or directory
Makefile:24: /data/gits/mxnet/dmlc-core/make/dmlc.mk: No such file or directory
Makefile:85: /data/gits/mxnet/ps-lite/make/ps.mk: No such file or directory
make: *** No rule to make target '/data/gits/mxnet/ps-lite/make/ps.mk'. Stop.
are those folders empty?
git again .
git clone --recursive https://github.com/dmlc/mxnet.git
I re-git mxnet.git and used --recursive , but it doesn't works. Then, I find an answer:
link: https://stackoverflow.com/posts/48272520/edit, and it works for me.
git clone --no-checkout https://github.com/apache/incubator-mxnet
cd incubator-mxnet
git checkout v0.7.0 -b v0.7.0
git submodule update --init
It means you have not cloned mxnet properly.
use git clone --recursive https://github.com/apache/incubator-mxnet.git
Most helpful comment
git clone --recursive https://github.com/dmlc/mxnet.git