Incubator-mxnet: mxnet-git building error UBUNTU 16.04

Created on 30 Jun 2016  路  5Comments  路  Source: apache/incubator-mxnet

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.

Most helpful comment

git clone --recursive https://github.com/dmlc/mxnet.git

All 5 comments

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

Was this page helpful?
0 / 5 - 0 ratings