Skip to content

Commit 9eb0e77

Browse files
committed
updated README and docs
1 parent ac9f0a6 commit 9eb0e77

File tree

2 files changed

+35
-3
lines changed

2 files changed

+35
-3
lines changed

README.md

+12-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ This repository contains scripts and off-the-shelf starter scripts for developpi
1414
- docker
1515
- git
1616
- openssh-server
17-
17+
- nvidia-container-toolkit (look at [robot_toolkit/docs/nvidia-container-toolkit.md](robot_toolkit/docs/nvidia-container-toolkit.md) )
18+
- GPU with necessary Nvidia drivers (if using workstation docker)
1819
```
1920
sudo apt-get install docker.io docker-compose git
2021
```
@@ -64,7 +65,12 @@ Build, create, and start the docker container for the workstation computer that
6465
**Note: it is important to pass the workstation IP address as seen by the Realtime computer here**
6566
```
6667
docker-compose -f docker/workstation_computer/docker-compose-gui.yml build \
67-
--build-arg workstation_ip=<workstation_ip address>
68+
--build-arg workstation_ip=<workstation_ip address> \
69+
--build-arg use_robotiq=1 \
70+
--build-arg build_dope=1 \
71+
--build-arg build_contactgraspnet=1 \
72+
--build-arg build_megapose=1
73+
6874
docker-compose -f docker/workstation_computer/docker-compose-gui.yml create
6975
docker-compose -f docker/workstation_computer/docker-compose-gui.yml start
7076
@@ -208,8 +214,11 @@ python3 docker_frankapy_test.py
208214
209215
## Using calibration
210216
211-
Please checkout [robot_toolkit/docs](robot_toolkit/docs) for documentations of robot camera extrinsic calibration, usage of this tool.
217+
Please checkout [robot_toolkit/docs](robot_toolkit/docs) for documentations of robot camera extrinsic calibration, usage of this tool. We also have a video showing how to use our tool [here](https://drive.google.com/file/d/1VMregvZZmWaFMxj7J3FgXDaWfS2ae4tQ/view?usp=sharing)
218+
219+
## Using Deeplearning based prediciton models
212220
221+
Please checkout [robot_toolkit/docs/deep_learning_models.md](robot_toolkit/docs/deep_learning_models.md) and [robot_toolkit/docs/nvidia-container-toolkit.md](robot_toolkit/docs/nvidia-container-toolkit.md) for running Neural network models with GPUs.
213222
214223
## Test robotiq gripper
215224
To run the robotiq device, first in a terminal do
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
## Description
2+
3+
Instructions to install nvidia-container-toolkit in Ubuntu host machines
4+
5+
Following instructions [here](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html)
6+
7+
```
8+
curl -fsSL https://nvidia.github.io/libnvidia-container/gpgkey | sudo gpg --dearmor -o /usr/share/keyrings/nvidia-container-toolkit-keyring.gpg \
9+
&& curl -s -L https://nvidia.github.io/libnvidia-container/stable/deb/nvidia-container-toolkit.list | \
10+
sed 's#deb https://#deb [signed-by=/usr/share/keyrings/nvidia-container-toolkit-keyring.gpg] https://#g' | \
11+
sudo tee /etc/apt/sources.list.d/nvidia-container-toolkit.list
12+
```
13+
14+
```
15+
sudo apt-get update && sudo apt-get install -y nvidia-container-toolkit
16+
```
17+
18+
```
19+
sudo nvidia-ctk runtime configure --runtime=docker
20+
```
21+
```
22+
sudo systemctl restart docker
23+
```

0 commit comments

Comments
 (0)