ai-zeus-hub
ai-zeus-hub
Hey @cryptik, I followed your steps above (I'm also using px4) by doing: * Downloading jars: ``` cd PX4-Autopilot/Tools/simulation/jmavsim/jMAVSim/lib/ wget https://jogamp.org/deployment/archive/rc/v2.4.0/jar/gluegen-rt-natives-linux-aarch64.jar wget https://jogamp.org/deployment/archive/rc/v2.4.0/jar/joal-natives-linux-aarch64.jar wget https://jogamp.org/deployment/archive/rc/v2.4.0/jar/jogl-all-natives-linux-aarch64.jar wget https://jogamp.org/deployment/archive/rc/v2.4.0/jar/joal-natives-linux-aarch64.jar ``` * Modifying...
As info, if anyone else runs into the above error, I resolved it by doing: ``` export LIBGL_ALWAYS_SOFTWARE=1 ``` according to here: https://groups.google.com/g/jaamsim-users/c/tJW48U0Vi9k?pli=1 There's probably a way to fix it...
Actually, updating the following jar's resolve the issue correctly: ``` wget https://jogamp.org/deployment/archive/rc/v2.4.0/jar/jogl-all.jar wget https://jogamp.org/deployment/archive/rc/v2.4.0/jar/gluegen-rt.jar wget https://jogamp.org/deployment/archive/rc/v2.4.0/jar/joal.jar ```