Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update PPA installation #51

Merged
merged 2 commits into from
Jul 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
**Docker hub: [koide3/glim_ros1](https://hub.docker.com/repository/docker/koide3/glim_ros1/tags), [koide3/glim_ros2](https://hub.docker.com/repository/docker/koide3/glim_ros2/tags)**
**Related packges:** [gtsam_points](https://github.com/koide3/gtsam_points), [glim](https://github.com/koide3/glim), [glim_ros1](https://github.com/koide3/glim_ros1), [glim_ros2](https://github.com/koide3/glim_ros2), [glim_ext](https://github.com/koide3/glim_ext)

Tested on Ubuntu 22.04 /24.04 with CUDA 12.2, and NVIDIA Jetson Orin.
Tested on Ubuntu 22.04 /24.04 with CUDA 12.2 / 12.5, and NVIDIA Jetson Orin (Jetpack 6.0).

If you find this package useful for your project, please consider leaving a comment [here](https://github.com/koide3/glim/issues/19). It would help the author receive recognition in his organization and keep working on this project.

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
- RGB-D camera (e.g., Microsoft Azure Kinect)
- ***Extensibility:*** GLIM provides the global callback slot mechanism that allows to access the internal states of the mapping process and insert additional constraints to the factor graph. We also release [glim_ext](https://github.com/koide3/glim_ext) that offers example implementations of several extension functions (e.g., explicit loop detection, LiDAR-Visual-Inertial odometry estimation).

Tested on Ubuntu 22.04 / 24.04 with CUDA 12.2, and NVIDIA Jetson Orin.
Tested on Ubuntu 22.04 / 24.04 with CUDA 12.2 / 12.5, and NVIDIA Jetson Orin (Jetpack 6.0).

[![Build test status](assets/build.svg)](https://github.com/koide3/glim/actions/workflows/build.yml)
[![ROS1](assets/ros1.svg)](https://github.com/koide3/glim_ros1/actions/workflows/docker_push.yml)
Expand Down
19 changes: 14 additions & 5 deletions docs/installation.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@

GLIM is tested on Ubuntu 22.04 / 24.04 with CUDA 12.2 / 12.5, and NVIDIA Jetson Orin (JetPack 6.0).

You can build and install GLIM from source code, or install pre-built binaries from PPA.
GLIM is tested on Ubuntu 22.04 / 24.04 with CUDA 12.2 / 12.5, and NVIDIA Jetson Orin (JetPack 6.0). You can build and install GLIM from source code, or install pre-built binaries from PPA.

## Install from source

Expand Down Expand Up @@ -97,7 +95,7 @@ sudo apt install curl gpg
```bash
# Choose one of the follows

# Automatically select ubuntu version via online script
# Automatically setup PPA via online script
curl -s https://koide3.github.io/ppa/setup_ppa.sh | sudo bash

# Manually setup PPA for Ubuntu 24.04
Expand Down Expand Up @@ -125,12 +123,23 @@ sudo apt install -y libgtsam-points-cuda-12.2-dev # with CUDA 12.2
sudo apt install -y libgtsam-points-cuda-12.5-dev # with CUDA 12.5
```

### Install GLIM for ROS2
### Install GLIM for ROS

```bash
# Choose one of the follows

# ROS2 jazzy (Ubuntu 24.04)
sudo apt install -y ros-jazzy-glim-ros # Without CUDA
sudo apt install -y ros-jazzy-glim-ros-cuda12.5 # With CUDA 12.5

# ROS2 humble (Ubuntu 22.04)
sudo apt install -y ros-humble-glim-ros # Without CUDA
sudo apt install -y ros-humble-glim-ros-cuda12.2 # With CUDA 12.2
sudo apt install -y ros-humble-glim-ros-cuda12.5 # With CUDA 12.5

# ROS1 noetic (Ubuntu 20.04)
sudo apt install -y ros-noetic-glim-ros # Without CUDA
sudo apt install -y ros-noetic-glim-ros-cuda12.2 # With CUDA 12.2
sudo apt install -y ros-noetic-glim-ros-cuda12.5 # With CUDA 12.5
```

2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ nav:
- 'installation.md'
- 'docker.md'
- 'quickstart.md'
- 'demo.md'
- 'parameters.md'
- 'demo.md'
- 'extend.md'
- 'extensions.md'
- 'faq.md'
Expand Down
Loading