gluoncv - unable to install in Jetson Nano

Hi,

I have been able to install mxnet version 1.4.1 using I was unable to compile and install MXNET on the jetson nano,Is there an official installation tutorial? - Jetson Nano - NVIDIA Developer Forums

I am unable to install gluoncv. The cuda version is 10.0. I have tried pip install gluoncv.

Should I do source installation?

Please help. Thanks.

Hi,

Maybe you can try to build it from source:

git clone https://github.com/dmlc/gluon-cv
cd gluon-cv && python setup.py install --user

Thanks.

Dear AastaLLL,

Yes, building from source indeed works. Thanks for the response!

@gomathyshankar.r How do you install mxnet version 1.4.1 with that tutorial? What do we have to modify to get the exact 1.4.1 version? Did you install mxnet by building mxnet from source as in:

https://devtalk.nvidia.com/default/topic/1049293/jetson-nano/i-was-unable-to-compile-and-install-mxnet-on-the-jetson-nano-is-there-an-official-installation-tutorial-/post/5326119/#5326119

or did you (or can I) install version 1.4.1 from pre-compiled mxnet as in:

https://devtalk.nvidia.com/default/topic/1049293/jetson-nano/i-was-unable-to-compile-and-install-mxnet-on-the-jetson-nano-is-there-an-official-installation-tutorial-/post/5326170/#5326170 (though the pre-compiled file is of 1.4.0)?

I’m a newbie, please guide me. Thank you a lot!!

Hi,

The prebuilt file is v1.4.0 so it’s more recommended to build mxnet from source with the instructions shared here:
https://devtalk.nvidia.com/default/topic/1049293/jetson-nano/i-was-unable-to-compile-and-install-mxnet-on-the-jetson-nano-is-there-an-official-installation-tutorial-/post/5326119/#5326119

You can check out the v1.4.1 with this command:

git clone https://github.com/apache/incubator-mxnet.git --branch v1.4.1 --recursive

Thanks.

Thank you, I have successfully installed v1.4.1.