1 diff --git a/configure b/configure
2 index 0872ec4c..037680e0 100755
5 @@ -2132,7 +2132,7 @@ extern "C" int main(void)
9 - SUPPYTHONLIBS="python2.7 python2.6 python3.1 python3.2 python3.3 python3.4 python3.4m python3.5 python3.5m python3.6 python3.6m python3.7 python3.7m python3.8 python3.8m python3.9 python3.9m python3.10 python3.10m"
10 + SUPPYTHONLIBS="python2.7 python2.6 python3.1 python3.2 python3.3 python3.4 python3.4m python3.5 python3.5m python3.6 python3.6m python3.7 python3.7m python3.8 python3.8m python3.9 python3.9m python3.10 python3.10m python3.11 python3.11m"
11 for p in $PYTHONDIR; do
12 for d in $SUPPYTHONLIBS; do
13 for b in lib/x86_64-linux-gnu lib/i386-linux-gnu lib64 lib/64 lib; do
14 diff --git a/src/VBox/Installer/linux/routines.sh b/src/VBox/Installer/linux/routines.sh
15 index 08e06358..44eba726 100644
16 --- a/src/VBox/Installer/linux/routines.sh
17 +++ b/src/VBox/Installer/linux/routines.sh
18 @@ -446,7 +446,7 @@ maybe_run_python_bindings_installer() {
19 # the VirtualBox API bindings. Needs to prevent double installs which waste
20 # quite a bit of time.
22 - for p in python2.6 python2.7 python2 python3.3 python3.4 python3.5 python3.6 python3.7 python3.8 python3.9 python3.10 python3 python; do
23 + for p in python2.6 python2.7 python2 python3.3 python3.4 python3.5 python3.6 python3.7 python3.8 python3.9 python3.10 python3.11 python3 python; do
24 if [ "`$p -c 'import sys
25 if sys.version_info >= (2, 6) and (sys.version_info < (3, 0) or sys.version_info >= (3, 3)):
26 print(\"test\")' 2> /dev/null`" != "test" ]; then