From d25938698715dbb6a10e0891471c33a08687bf85 Mon Sep 17 00:00:00 2001 From: Matthias Grob Date: Mon, 6 Nov 2023 14:58:18 +0100 Subject: [PATCH] arch: python requirements fix, jdk comes with ant --- Tools/setup/arch.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Tools/setup/arch.sh b/Tools/setup/arch.sh index 26aa3d03f1..8e19ee5101 100755 --- a/Tools/setup/arch.sh +++ b/Tools/setup/arch.sh @@ -67,7 +67,7 @@ sudo pacman -Sy --noconfirm --needed \ # Python dependencies echo "Installing PX4 Python3 dependencies" -pip install --user -r ${DIR}/requirements.txt +pip install --break-system-packages -r ${DIR}/${REQUIREMENTS_FILE} # NuttX toolchain (arm-none-eabi-gcc) if [[ $INSTALL_NUTTX == "true" ]]; then @@ -95,8 +95,7 @@ if [[ $INSTALL_SIM == "true" ]]; then # java (jmavsim) sudo pacman -S --noconfirm --needed \ - ant \ - jdk-openjdk \ + ant ; # Gazebo setup