@@ -12,7 +12,7 @@ chmod +x NVIDIA-Linux-x86_64-535.129.03.run
12
12
sudo ./NVIDIA-Linux-x86_64-535.129.03.run
13
13
```
14
14
15
- ![ alt text] ( Asset/docker_install/image-2.png )
15
+ ![ alt text] ( ../ Asset/docker_install/image-2.png)
16
16
> I tried to install * nvidia driver-550* , and it also works.
17
17
18
18
## Docker Installation
@@ -57,17 +57,18 @@ docker run --rm --runtime=nvidia --gpus all ubuntu nvidia-smi
57
57
```
58
58
59
59
## Get NGC Key
60
+
60
61
You can follow this [ official documentation] ( https://docs.nvidia.com/ngc/gpu-cloud/ngc-user-guide/index.html#generating-api-key ) to get the NGC key.
61
62
62
63
1 . Go to [ NGC] ( https://ngc.nvidia.com/signin )
63
64
64
65
2 . Click on the ** Setup** button on the top right.
65
66
66
- ![ alt text] ( Asset/docker_install/image.png )
67
+ ![ alt text] ( ../ Asset/docker_install/image.png)
67
68
68
69
3 . Click on the ** Generate API Key** button.
69
70
70
- ![ alt text] ( Asset/docker_install/image-1.png )
71
+ ![ alt text] ( ../ Asset/docker_install/image-1.png)
71
72
72
73
4 . Copy the API Key.
73
74
@@ -93,13 +94,15 @@ docker pull nvcr.io/nvidia/isaac-sim:4.0.0
93
94
First, you need to make base image.
94
95
95
96
``` bash
96
- docker build -t isaac-sim-ros2:humble-4.0.0 base_docker
97
+ cd ${StrideSim_DIR}
98
+ docker build -t isaac-sim-ros2:humble-4.0.0 -f docker/Dockerfile.isaacsim-humble .
97
99
```
98
100
99
101
Then, build StrideSim Docker Image.
100
102
101
103
``` bash
102
- docker build -t stride-sim:v0.0.2 docker
104
+ cd ${StrideSim_DIR}
105
+ docker build -t stride-sim:v0.0.2 -f docker/Dockerfile.stridesim .
103
106
```
104
107
105
108
> The reason why we need to build base image is to reduce the build time.
@@ -206,4 +209,4 @@ rm -rf ~/docker/isaac-sim/cache/*
206
209
./isaac-sim.sh --allow-root --headless
207
210
```
208
211
209
- * Back to [ README] ( README.md ) *
212
+ * Back to [ README] ( ../ README.md) *
0 commit comments