Skip to content

Commit

Permalink
Small fix for rerun install
Browse files Browse the repository at this point in the history
  • Loading branch information
luigifreda committed Dec 22, 2024
1 parent 6852728 commit 917a2bf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,10 @@ If you encounter any issues or performance problems, refer to the [TROUBLESHOOTI

### Ubuntu

Follow the instructions reported [here](./docs/PYTHON-VIRTUAL-ENVS.md) for creating a new virtual environment `pyslam` with **venv**. The procedure has been tested on *Ubuntu 18.04*, *20.04*, *22.04* and *24.04*.

If you prefer **conda**, run the scripts described in this other [file](./docs/CONDA.md).
- With **venv**: Follow the instructions reported [here](./docs/PYTHON-VIRTUAL-ENVS.md). The procedure has been tested on *Ubuntu 18.04*, *20.04*, *22.04* and *24.04*.
- With **conda**: Run the procedure described in this other [file](./docs/CONDA.md).

Both procedures will create a new virtual environment `pyslam`.

### MacOS

Expand Down
3 changes: 2 additions & 1 deletion install_pip3_packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ else
install_pip_package torchvision==0.17
fi

install_pip_package rerun-sdk #==0.17.0
pip install "rerun-sdk>=0.17.0"

install_pip_package ujson
install_pip_package tensorflow_hub # required for VPR

Expand Down
3 changes: 2 additions & 1 deletion viz/rerun_interface.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import numpy as np
import cv2
import rerun as rr # pip install rerun-sdk
import rerun.blueprint as rrb

import utils_geom as utils_geom
import math as math
from camera import Camera
Expand Down Expand Up @@ -72,6 +72,7 @@ def init3d(img_compress=False) -> None:

@staticmethod
def init_vo(img_compress=False) -> None:
import rerun.blueprint as rrb
# Setup the blueprint
Rerun.blueprint = rrb.Vertical(
rrb.Horizontal(
Expand Down

0 comments on commit 917a2bf

Please sign in to comment.