From 46a295dace1db7e0678eccdaed619e5722afdf9c Mon Sep 17 00:00:00 2001 From: Arthur Sonzogni Date: Fri, 8 Aug 2025 14:28:51 +0000 Subject: [PATCH] Fix: Add python3-dev to linux dependencies. This fixes an issue where running `./local/install_deps_linux.bash` would fail while building the `google-cloud-profiler` wheel, due to the missing `Python.h` header file. This header is provided by the `python3-dev` package. Fixed: https://github.com/google/clusterfuzz/issues/4901 --- local/install_deps_linux.bash | 1 + 1 file changed, 1 insertion(+) diff --git a/local/install_deps_linux.bash b/local/install_deps_linux.bash index aa873bbe2e..590ccc03e2 100755 --- a/local/install_deps_linux.bash +++ b/local/install_deps_linux.bash @@ -81,6 +81,7 @@ sudo apt-get install -y \ curl \ libpython3-all-dev \ pipenv \ + python3-dev \ python3-pip \ unzip \ xvfb