From 4204b356d70af8a67889bbd9251876feb4780883 Mon Sep 17 00:00:00 2001 From: otavepto <153766569+otavepto@users.noreply.github.com> Date: Sun, 16 Jun 2024 17:31:09 +0300 Subject: [PATCH] fix python 3.12 installation on ubuntu 22 --- tools/generate_emu_config/recreate_venv_linux.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/generate_emu_config/recreate_venv_linux.sh b/tools/generate_emu_config/recreate_venv_linux.sh index 9f51c8ed..1be92192 100644 --- a/tools/generate_emu_config/recreate_venv_linux.sh +++ b/tools/generate_emu_config/recreate_venv_linux.sh @@ -16,7 +16,9 @@ apt install software-properties-common -y add-apt-repository ppa:deadsnakes/ppa -y apt update -y || exit 1 apt install "$python_package" -y || exit 1 +apt install "$python_package-dev" -y || exit 1 apt install "$python_package-venv" -y || exit 1 +apt install python3-dev -y || exit 1 [[ -d "$script_dir/$venv" ]] && rm -r -f "$script_dir/$venv"