From 38860b870afb6f78d7517c1023f3bf2a187ca869 Mon Sep 17 00:00:00 2001 From: Ryan Friedman <25047695+Ryanf55@users.noreply.github.com> Date: Fri, 20 Sep 2024 22:39:59 -0600 Subject: [PATCH] Tools: Install pygame through apt * https://www.pygame.org/wiki/GettingStarted#Debian/Ubuntu/Mint * They recommend apt if you want stability Signed-off-by: Ryan Friedman <25047695+Ryanf55@users.noreply.github.com> --- Tools/environment_install/install-prereqs-ubuntu.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tools/environment_install/install-prereqs-ubuntu.sh b/Tools/environment_install/install-prereqs-ubuntu.sh index 47611c655f896b..bed1af229b1828 100755 --- a/Tools/environment_install/install-prereqs-ubuntu.sh +++ b/Tools/environment_install/install-prereqs-ubuntu.sh @@ -162,13 +162,13 @@ else fi # Lists of packages to install -BASE_PKGS="build-essential ccache g++ gawk git make wget valgrind screen python3-pexpect python3-packaging python3-setuptools python3-wheel python3-lxml" +BASE_PKGS="build-essential ccache g++ gawk git make wget valgrind screen python3-pexpect python3-packaging python3-setuptools python3-wheel python3-lxml python3-pygame" PYTHON_PKGS="future pymavlink pyserial MAVProxy geocoder empy==3.3.4 ptyprocess dronecan" PYTHON_PKGS="$PYTHON_PKGS flake8 junitparser" # add some Python packages required for commonly-used MAVProxy modules and hex file generation: if [[ $SKIP_AP_EXT_ENV -ne 1 ]]; then - PYTHON_PKGS="$PYTHON_PKGS pygame intelhex" + PYTHON_PKGS="$PYTHON_PKGS intelhex" fi ARM_LINUX_PKGS="g++-arm-linux-gnueabihf $INSTALL_PKG_CONFIG" # python-wxgtk packages are added to SITL_PKGS below