Downloaing packages while building mxnet

Hi,
Although I have run
git clone --recursive https://github.com/apache/incubator-mxnet mxnet
when I run the build command
make USE_OPENCV=1 USE_BLAS=openblas USE_CUDA=1 USE_CUDA_PATH=/usr/local/cuda USE_CUDNN=1
it starts fetching some additional packages.
How can I fully fetch all things before compilation? I want to compile on a not-connected-to-internet machine.

git clone --recursive does not include external packages. You can find here some of the required packages that needs to be installed on your system. Alternatively you could you use pip (e.g. pip wheel mypackage -w mxnet-mkl) to download the mxnet package and its dependencies and use that to install mxnet on your machine without internet.