Revision dd87607dda81d9366a834a111953b3bf1faa421d authored by Tahina Ramananandro on 12 May 2020, 03:16:30 UTC, committed by Tahina Ramananandro on 12 May 2020, 03:16:30 UTC
2 parent s 6ea3c44 + a3f5d06
Raw File
findpython3.sh
#!/bin/bash

set -e
set -o pipefail

candidates="python3 python python3.6 python3.7 python3.8"

# $1: executable to try (in the path)
function try() {
  if which $1 &>/dev/null && \
    echo "import sys; sys.exit (not (sys.version_info >= (3, 6)))" | $1;
  then
    echo -n $1
  else
    false
  fi
}

# $1: version to try (e.g. 3.6)
try_windows () {
    PYDIR=$(regtool -q get "/HKLM/Software/Python/PythonCore/$1/InstallPath/" || true)
    if ! [[ -d $PYDIR ]] ; then
      PYDIR=$(regtool -q get "/HKCU/Software/Python/PythonCore/$1/InstallPath/" || true)
    fi
    if [[ -d $PYDIR ]] ; then
      echo "$PYDIR/python.exe" | sed 's!\\!/!g'
    else
      false
    fi
}


found=false

if [[ $OS == "Windows_NT" ]]; then
  for v in 3.6 3.7 3.8; do
    if try_windows $v; then
      found=true
      break
    fi
  done
fi

if $found; then
  exit 0
fi

for c in $candidates; do
  if try $c; then
    found=true
    break
  fi
done

if ! $found; then
  echo "None of $candidates was a valid version of python3 (we want: >= 3.6)" 1>&2
  false
fi
back to top