Troubleshooting
This page covers common issues when using the binary RaiSim distribution.
Executable Not Found
When you build examples from the public raisim2Lib workspace, CMake places them
under the build directory:
./build-examples/examples/primitive_grid
./build-examples/examples/rayrai_tcp_viewer
The unpacked package uses rayrai/bin/rayrai_raisim_tcp_viewer for the
prebuilt TCP viewer. rayrai_tcp_viewer is the public example target.
If a command from old docs uses an example_ prefix, check Examples
for the current target name.
Activation Key Not Found
Place the activation key at:
$HOME/.raisim/activation.raisim
or pass an explicit path before creating worlds:
raisim::World::setActivationKey("/absolute/path/to/activation.raisim");
TCP Viewer Does Not Connect
Check these points:
The simulation must create
raisim::RaisimServerand calllaunchServer.The server-based example and TCP viewer must use the same port. The default is
8080.Start the simulation and viewer from the same installed RaiSim version.
The TCP viewer receives world state only. It does not write RGB/depth rendered images back into RaiSim sensor buffers.
rayrai Window Or Offscreen Context Fails
rayrai requires a working OpenGL context. On Linux, make sure OpenGL and SDL2 development/runtime packages are available. On headless systems, use the offscreen context helpers documented in rayrai Visualizer and verify that the machine provides a usable software or hardware OpenGL stack.
Example Asset Missing
Examples expect their bundled assets to stay with the release workspace. If
an example cannot find a URDF, mesh, texture, heightmap, or USD asset, verify
that the top-level rsc directory exists and that CMake copied it to
build-examples/examples/rsc (or build-examples/bin/rsc on Windows).
OpenUSD Runtime Or Plugin Missing
USD mesh loading uses the bundled OpenUSD runtime. Keep the installed
openusd directory and USD shared libraries next to the RaiSim binaries:
raisim/lib/openusd on Linux, and raisim/bin/openusd plus the usd_*.dll
files on Windows.
If an executable is launched from another directory, run the package environment
script first so the runtime loader can find RaiSim and OpenUSD. If an OpenUSD
runtime is missing from the public package, reinstall or upgrade the matching
raisim2Lib release instead of trying to rebuild the closed-source engine.