From 54a84d0e42c3b024c15168be50e092e415572a9a Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Mon, 3 Feb 2020 13:23:13 +0300 Subject: [PATCH] Do not attempt to install custom python version, just use system default --- scripts/setup-osx.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/setup-osx.sh b/scripts/setup-osx.sh index ba16d45cc..dcfcd4492 100644 --- a/scripts/setup-osx.sh +++ b/scripts/setup-osx.sh @@ -1,8 +1,9 @@ #!/usr/bin/env bash -wget "https://www.python.org/ftp/python/${PYTHON}/python-${PYTHON}-macosx10.6.pkg" -sudo installer -pkg python-${PYTHON}-macosx10.6.pkg -target / +echo "Upgrading pip" sudo python3 -m ensurepip --upgrade -# A manual check that the correct version of Python is running. +echo "Checking python version" python3 --version +echo "Installing app requirements" python3 -m pip install -r requirements.txt +echo "Installing packaging tools" python3 -m pip install PyInstaller==3.6