Troubleshooting (original) (raw)

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 ticketor join our Discord.

Running on Linux running-on-linux

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.

Running on WSL2 (Ubuntu) running-on-wsl2-ubuntu

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 issues pip-install-issues

If 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.

Startup issues startup-issues

If Rerun is having trouble starting, you can try resetting its memory with:

Graphics issues graphics-issues

Make sure to keep your graphics drivers updated.

Wgpu (the graphics API we use) maintains a list ofknown driver issues and workarounds for them.

The configuration we use for wgpu can be influenced in the following ways:

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.

Multiple GPUs multiple-gpus

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.:

Video stuttering video-stuttering

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:

TODO(#7532): Some stuttering that can't be mitigated this way has been observed with H.264 video on Linux Firefox v130.0.

For more information about video decoding, see also the reference page on video.