This repository contains the Rerun log SDK, server, and viewer.
We don't have any pre-built binaries yet, so you need to build Rerun from source. There is some setup involved, but most of it should be pretty painless.
First up, you need to install the Rust toolchain: https://rustup.rs/
Then, setup the rest of the required tools by running ./scripts/setup.sh
.
After running the setup above, you can build and install the rerun viewer with:
cargo install --path ./crates/rerun/ --all-features
You should now be able to run rerun --help
in any terminal.
python3 -m pip install --upgrade pip
pip3 install "crates/re_sdk_python[tests,examples]"
Note: If you are unable to upgrade pip to version >=21.3
, you need to pass --use-feature=in-tree-build
to the pip3 install
command.
python3 crates/re_sdk_python/example.py
See crates/re_sdk_python/USAGE.md
.
Take a look at CONTRIBUTING.md
.