1diff --git i/python/src/prebuild.sh w/python/src/prebuild.sh
2index d2847ee5..aa1ecc53 100755
3--- i/python/src/prebuild.sh
4+++ w/python/src/prebuild.sh
5@@ -12,9 +12,6 @@ mkdir -p "$DST/incpy"
6 if [ ! -f "$DST/python/.prepared" ]; then
7 echo "Preparing python virtual env at $DST/python using $PYTHON"
8 mkdir -p "$DST/python"
9- $PYTHON -m venv --system-site-packages "$DST/python"
10- "$DST/python/bin/python" -m pip install --upgrade pip || true
11- "$DST/python/bin/python" -m pip install --ignore-installed cffi debugpy pcpp
12 $PREPROCESSOR "$SRC/python/src/consts.gen" | sh > "${DST}/incpy/consts.h"
13
14 echo "1" > "$DST/python/.prepared"
15@@ -26,4 +23,4 @@ cp -f -R \
16 "$SRC/python/configs/plug/far2l/"* \
17 "$DST/incpy/"
18
19-"$DST/python/bin/python" "$SRC/python/src/pythongen.py" "${SRC}" "${DST}/incpy"
20+"python" "$SRC/python/src/pythongen.py" "${SRC}" "${DST}/incpy"