docs/content/overview/installing-rerun/troubleshooting.md
You can set RUST_LOG=debug before running to get some verbose logging output.
If you run into any issues don't hesitate to open a ticket or join our Discord.
Rerun should work out-of-the-box on Mac and Windows, but on Linux you need to first run:
sudo apt-get -y install \
libclang-dev \
libatk-bridge2.0 \
libfontconfig1-dev \
libfreetype6-dev \
libglib2.0-dev \
libgtk-3-dev \
libssl-dev \
libxcb-render0-dev \
libxcb-shape0-dev \
libxcb-xfixes0-dev \
libxkbcommon-dev \
patchelf
On Fedora Rawhide you need to run:
sudo dnf install \
clang \
clang-devel \
clang-tools-extra \
libxcb-devel \
libxkbcommon-devel \
openssl-devel \
pkg-config
TODO(#1250): Running with the wayland window manager
sometimes causes Rerun to crash. Try unsetting the wayland display (unset WAYLAND_DISPLAY or WAYLAND_DISPLAY= ) as a workaround.
WSL's graphics drivers won't work out of the box and you'll have to update to a more recent version. To install the latest stable version of the mesa Vulkan drivers run:
sudo add-apt-repository ppa:kisak/kisak-mesa
sudo apt-get update
sudo apt-get install -y mesa-vulkan-drivers
Since the Mesa driver on WSL dispatches to the Windows host graphics driver, it is important to keep the Windows drivers up-to-date as well. For example, line rendering issues have been observed when running from WSL with an outdated AMD driver on the Windows host.
On Ubuntu 24 issues with Wayland have been observed.
To mitigate this install libxkbcommon-x11
sudo apt install libxkbcommon-x11-0
And unset the wayland display either by unset WAYLAND_DISPLAY or WAYLAND_DISPLAY= .
pip install issuesIf you see the following when running pip install rerun-sdk or pip install rerun-notebook on a supported platform:
ERROR: Could not find a version that satisfies the requirement rerun-sdk (from versions: none)
ERROR: No matching distribution found for rerun-sdk
Then this is likely because you're running a version of pip that is too old.
You can check the version of pip with pip --version.
If you're running a version of pip 20 or older, you should upgrade it with pip install --upgrade pip.
⚠️ depending on your system configuration this may upgrade the pip installation aliased by pip3 instead of pip.
If Rerun is having trouble starting, you can try resetting its memory with:
rerun reset
Make sure to keep your graphics drivers updated.
Wgpu (the graphics API we use) maintains a list of known driver issues and workarounds for them.
The configuration we use for wgpu can be influenced in the following ways:
--renderer=<backend> on startup: <backend> must be one of vulkan, metal or gl for native and
either webgl or webgpu for the web viewer (see also --web-viewer argument).
Naturally, support depends on your OS. The default backend is vulkan everywhere except on Mac where we use metal.
On the web we prefer WebGPU and fall back automatically to WebGL if no support for WebGPU was detected.
rerun --renderer=gl or for the web viewer respectively rerun --web-viewer --renderer=webgl.WGPU_BACKEND environment variable with the above values.renderer=<backend> url argument, e.g. [https://rerun.io/viewer?renderer=webgl]WGPU_POWER_PREF: Overwrites the power setting used for choosing a graphics adapter, must be high or low. (Default is high)We recommend setting these only if you're asked to try them or know what you're doing, since we don't support all of these settings equally well.
When using Wgpu's Vulkan backend (the default on Windows & Linux) on a computer that has both integrated and dedicated GPUs, a lot of issues can arise from Vulkan either picking the "wrong" GPU at runtime, or even simply from the fact that this choice conflicts with other driver picking technologies (e.g. NVIDIA Optimus).
In both cases, forcing Vulkan to pick either the integrated or discrete GPU (try both!) using the VK_ICD_FILENAMES environment variable might help with crashes, artifacts and bad performance. E.g.:
export VK_ICD_FILENAMES=/usr/share/vulkan/icd.d/intel.json.export VK_ICD_FILENAMES=/usr/share/vulkan/icd.d/nvidia.json.set VK_ICD_FILENAMES=\windows\system32\nv-vk64.json.On some browsers the default video decoder may cause stuttering. This has been for instance observed with Chrome 129 on Windows.
To mitigate these issues, you can try to specify software decoding. This can be configured from the viewer's option menu. Alternatively, you can also override this setting on startup:
&video_decoder=prefer_software as a url parameter--web-viewer argument), pass --video-decoder=prefer_softwareFor more information about video decoding, see also the reference page on video.