QGIS/platform/macos/python.in
2025-06-05 13:51:13 +02:00

7 lines
245 B
Bash

#!/bin/bash
# This is a wrapper for python, to launch python with the proper PYTHONHOME set
# to make it relocatable.
BASEDIR="$(cd "$(dirname "$0")" && pwd)"
export PYTHONHOME="${BASEDIR}/../Frameworks"
exec ${BASEDIR}/@PYTHON_EXECUTABLE@ "$@"