I was unable to compile and install MXNET on the jetson nano,Is there an official installation tutorial?

Hi, all

Here is a prebuilt file for MXNet on Nano. You can install it with pip directly.

Python2.7
Please download the wheel file here.

sudo apt-get install -y git build-essential libatlas-base-dev libopencv-dev graphviz python-pip
sudo pip install mxnet-1.4.0-cp27-cp27mu-linux_aarch64.whl

Python3.6
Please download the wheel file here.

sudo apt-get install -y git build-essential libatlas-base-dev libopencv-dev graphviz python3-pip
sudo pip3 install mxnet-1.4.0-cp36-cp36m-linux_aarch64.whl

Thanks.