File tree 3 files changed +9
-13
lines changed
3 files changed +9
-13
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Dockerfiles and scripts for development using the Isaac ROS suite.
4
4
5
5
## Overview
6
6
7
- The [ Isaac ROS Common] ( https://github.com/NVIDIA-ISAAC-ROS/isaac_ros_common )
7
+ The Isaac ROS Common
8
8
repository contains a number of scripts and Dockerfiles to help
9
9
streamline development and testing with the Isaac ROS suite.
10
10
Original file line number Diff line number Diff line change @@ -146,11 +146,16 @@ apt-get update && apt-get install -y \
146
146
RUN python3 -m pip install -U \
147
147
setuptools==65.7.0
148
148
149
- # Python3 (PIP)
149
+ # Python3 PIP buildtools
150
+ RUN python3 -m pip install -U \
151
+ Cython \
152
+ ninja \
153
+ wheel
154
+
155
+ # Python3 PIP packages
150
156
RUN python3 -m pip install -U \
151
157
argcomplete \
152
158
autopep8 \
153
- Cython \
154
159
flake8 \
155
160
flake8-blind-except \
156
161
flake8-builtins \
@@ -163,7 +168,6 @@ RUN python3 -m pip install -U \
163
168
gpustat==0.6.0 \
164
169
importlib_resources \
165
170
networkx \
166
- ninja \
167
171
"numpy>=1.24.4,<2" \
168
172
numpy-quaternion \
169
173
onnx \
@@ -177,7 +181,6 @@ RUN python3 -m pip install -U \
177
181
tqdm \
178
182
trimesh \
179
183
"warp-lang>=0.9.0" \
180
- wheel \
181
184
"yourdfpy>=0.0.53"
182
185
183
186
# Add MQTT binaries and libraries
@@ -364,7 +367,7 @@ ENV LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:/opt/tritonserver/lib"
364
367
# Current libboost-dev apt packages are < 1.78, so install from tar.gz
365
368
RUN --mount=type=cache,target=/var/cache/apt \
366
369
wget -O /tmp/boost.tar.gz \
367
- https://boostorg.jfrog .io/artifactory/main /release/1.80.0/source/boost_1_80_0.tar.gz \
370
+ https://archives.boost .io/release/1.80.0/source/boost_1_80_0.tar.gz \
368
371
&& (cd /tmp && tar xzf boost.tar.gz) \
369
372
&& cd /tmp/boost_1_80_0 \
370
373
&& ./bootstrap.sh --prefix=/usr \
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments