Jetson Nano Driver Installation Issues (with possible solutions) #39
Replies: 2 comments 2 replies
-
Hey @abhisheksreesaila. Thanks for the feedback. I think issue 1 was touched on in this discussion. Please let me know otherwise. As for issue 2, yes this is a big pain point for us. In particular because NVIDIA has decided to not officially support (ever) Ubuntu 20.04 on the nano which supports ROS Noetic (python3). Jetpack 4.2 is the way to go and we recently updated our instructions in this commit to reflect that. Thanks again for sharing what you found! |
Beta Was this translation helpful? Give feedback.
-
Hi @abhisheksreesaila - sorry I had originally told @schmittlema that this problem was covered by the discussion he referenced, I should have read your original post more carefully. Although I think the script does eventually get everything set up correctly because it tries to compile the workspace multiple times, you're right that one of the compilation attempts fail. So I moved the installation of librealsense to before that point in our latest commit, so it should be good to go now. Thanks for letting us know! |
Beta Was this translation helpful? Give feedback.
-
Issue No 1
The order of install specified in mushr_install.sh has to tweaked slightly I think.
The current state : ROS ==> MUSHR stack ==> HARDWARE
Solution (that worked for me)
The correct order should be : ROS ==> real sense SDK ==> MUSHR ==> HARDWARE
Issue No 2
When you flash a fresh image of JETPACK today, it will install Jetpack 4.5.2, but hang on
Jetpack 4.5.2 == supports CUDA 10.2 ==> which supports only torch 1.5 and above
But mushr_rhc install needs torch 1.1. we can upgrade to torch 1.5, however, torch 1.5 supports only python 3.6 which mushr does not support. So,
Solution (that worked for me)
- update bashrc as shown here
** EASIER Solution **
Install Jetpack 4.2.2 from the NVIDIA archives to ease the pain of installation.
Beta Was this translation helpful? Give feedback.
All reactions