diff --git a/installer/install.bat b/installer/install.bat index c0ebc061bc..ba37b38f35 100644 --- a/installer/install.bat +++ b/installer/install.bat @@ -16,12 +16,10 @@ echo. set MAMBA_ROOT_PREFIX=%cd%\installer_files\mamba set INSTALL_ENV_DIR=%cd%\installer_files\env set MICROMAMBA_DOWNLOAD_URL=https://github.com/cmdr2/stable-diffusion-ui/releases/download/v1.1/micromamba.exe -set REPO_URL=https://github.com/invoke-ai/InvokeAI.git -set umamba_exists=F -@rem Change the download URL to an InvokeAI repo's release URL - -@rem figure out whether git and conda needs to be installed -if exist "%INSTALL_ENV_DIR%" set PATH=%INSTALL_ENV_DIR%;%INSTALL_ENV_DIR%\Library\bin;%INSTALL_ENV_DIR%\Scripts;%INSTALL_ENV_DIR%\Library\usr\bin;%PATH% +set RELEASE_URL=https://github.com/invoke-ai/InvokeAI +set RELEASE_SOURCEBALL=/archive/refs/heads/main.tar.gz +set PYTHON_BUILD_STANDALONE_URL=https://github.com/indygreg/python-build-standalone/releases/download +set PYTHON_BUILD_STANDALONE=20221002/cpython-3.10.7+20221002-x86_64-pc-windows-msvc-shared-install_only.tar.gz set PACKAGES_TO_INSTALL= diff --git a/installer/install.sh b/installer/install.sh index 96ee9c9c25..687a9288a8 100755 --- a/installer/install.sh +++ b/installer/install.sh @@ -34,12 +34,15 @@ if [ "$OS_NAME" == "linux" ] && [ "$OS_ARCH" == "arm64" ]; then OS_ARCH="aarch64 # config export MAMBA_ROOT_PREFIX="$(pwd)/installer_files/mamba" INSTALL_ENV_DIR="$(pwd)/installer_files/env" -MICROMAMBA_DOWNLOAD_URL="https://micro.mamba.pm/api/micromamba/${OS_NAME}-${OS_ARCH}/latest" -REPO_URL="https://github.com/invoke-ai/InvokeAI.git" -umamba_exists="F" - -# figure out whether git and conda needs to be installed -if [ -e "$INSTALL_ENV_DIR" ]; then export PATH="$INSTALL_ENV_DIR/bin:$PATH"; fi +MICROMAMBA_DOWNLOAD_URL="https://micro.mamba.pm/api/micromamba/${MAMBA_OS_NAME}-${MAMBA_ARCH}/latest" +RELEASE_URL=https://github.com/invoke-ai/InvokeAI +RELEASE_SOURCEBALL=/archive/refs/heads/main.tar.gz +PYTHON_BUILD_STANDALONE_URL=https://github.com/indygreg/python-build-standalone/releases/download +if [ "$OS_NAME" == "darwin" ]; then + PYTHON_BUILD_STANDALONE=20221002/cpython-3.10.7+20221002-${PY_ARCH}-apple-darwin-install_only.tar.gz +elif [ "$OS_NAME" == "linux" ]; then + PYTHON_BUILD_STANDALONE=20221002/cpython-3.10.7+20221002-${PY_ARCH}-unknown-linux-gnu-install_only.tar.gz +fi PACKAGES_TO_INSTALL=""