From 256227b0b6ce2f06892aef24bf7d933bb017806a Mon Sep 17 00:00:00 2001 From: Balakumar Sundaralingam Date: Fri, 15 Dec 2023 14:28:01 -0800 Subject: [PATCH] python3 fix to aarch64 dockerfile --- docker/aarch64.dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/aarch64.dockerfile b/docker/aarch64.dockerfile index c5cb3c2f..b7a21306 100644 --- a/docker/aarch64.dockerfile +++ b/docker/aarch64.dockerfile @@ -170,7 +170,7 @@ RUN cd /pkgs && git clone https://github.com/valtsblukis/nvblox.git && \ RUN cd /pkgs && git clone https://github.com/nvlabs/nvblox_torch.git && \ cd nvblox_torch && \ - sh install.sh $(python -c 'import torch.utils; print(torch.utils.cmake_prefix_path)') && \ + sh install.sh $(python3 -c 'import torch.utils; print(torch.utils.cmake_prefix_path)') && \ python3 -m pip install -e . RUN python -m pip install "robometrics[evaluator] @ git+https://github.com/fishbotics/robometrics.git"