diff --git a/installer/InvokeAI-linux.zip b/installer/InvokeAI-linux.zip deleted file mode 100644 index af9b621b91..0000000000 Binary files a/installer/InvokeAI-linux.zip and /dev/null differ diff --git a/installer/InvokeAI-mac.zip b/installer/InvokeAI-mac.zip deleted file mode 100644 index af9b621b91..0000000000 Binary files a/installer/InvokeAI-mac.zip and /dev/null differ diff --git a/installer/InvokeAI-windows.zip b/installer/InvokeAI-windows.zip deleted file mode 100644 index bafdb39c70..0000000000 Binary files a/installer/InvokeAI-windows.zip and /dev/null differ diff --git a/installer/InvokeAI/install.bat b/installer/InvokeAI/install.bat index 3442ee50c3..722f1bef6f 100644 --- a/installer/InvokeAI/install.bat +++ b/installer/InvokeAI/install.bat @@ -156,6 +156,10 @@ if %errorlevel% neq 0 goto err_exit echo ***** Finished downloading models ***** +echo ***** Installing invoke.bat ****** +cp installer\invoke.bat .\invoke.bat + + @rem more cleanup rd /s /q installer installer_files @@ -165,4 +169,4 @@ exit :err_exit echo %err_msg% pause - exit \ No newline at end of file + exit diff --git a/installer/create_installers.sh b/installer/create_installers.sh index d468a20ea4..833ae82239 100755 --- a/installer/create_installers.sh +++ b/installer/create_installers.sh @@ -24,4 +24,6 @@ cp WinLongPathsEnabled.reg InvokeAI zip -r InvokeAI-windows.zip InvokeAI +rm -rf InvokeAI + echo "The installer zips are ready for distribution." diff --git a/installer/install.bat b/installer/install.bat index 722f1bef6f..c17339e262 100644 --- a/installer/install.bat +++ b/installer/install.bat @@ -18,8 +18,8 @@ set PATH=c:\windows\system32 set INSTALL_ENV_DIR=%cd%\installer_files\env @rem https://mamba.readthedocs.io/en/latest/installation.html set MICROMAMBA_DOWNLOAD_URL=https://micro.mamba.pm/api/micromamba/win-64/latest -set RELEASE_URL=https://github.com/tildebyte/InvokeAI -set RELEASE_SOURCEBALL=/archive/feat-install-pip-compile.tar.gz +set RELEASE_URL=https://github.com/invoke-ai/InvokeAI +set RELEASE_SOURCEBALL=/archive/refs/tags/2.1.3-rc4.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 diff --git a/installer/install.sh b/installer/install.sh index 53fe2066a4..e7a8b2061b 100755 --- a/installer/install.sh +++ b/installer/install.sh @@ -73,8 +73,8 @@ fi # config INSTALL_ENV_DIR="$(pwd)/installer_files/env" MICROMAMBA_DOWNLOAD_URL="https://micro.mamba.pm/api/micromamba/${MAMBA_OS_NAME}-${MAMBA_ARCH}/latest" -RELEASE_URL=https://github.com/tildebyte/InvokeAI -RELEASE_SOURCEBALL=/archive/feat-install-pip-compile.tar.gz +RELEASE_URL=https://github.com/invoke-ai/InvokeAI +RELEASE_SOURCEBALL=/archive/refs/tags/2.1.3-rc4.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 diff --git a/installer/invoke.sh b/installer/invoke.sh index e8c3196431..58f342d471 100755 --- a/installer/invoke.sh +++ b/installer/invoke.sh @@ -18,5 +18,7 @@ if [ "$0" != "bash" ]; then * ) echo "Invalid selection"; exit;; esac else # in developer console - .venv/bin/python + python --version + echo "Press ^D to exit" + export PS1="(InvokeAI) \u@\h \w> " fi diff --git a/source_installer/install.bat b/source_installer/install.bat index 6c2f4933e9..5f3be08ae7 100644 --- a/source_installer/install.bat +++ b/source_installer/install.bat @@ -72,7 +72,6 @@ if not exist ".git" ( call git config --local init.defaultBranch main call git remote add origin %REPO_URL% call git fetch -# call git checkout origin/main -ft call git checkout origin/release-candidate-2-1-3 -ft ) diff --git a/source_installer/invoke.sh b/source_installer/invoke.sh index 76d460be87..9bc1e879f4 100755 --- a/source_installer/invoke.sh +++ b/source_installer/invoke.sh @@ -23,6 +23,7 @@ if [ "$0" != "bash" ]; then * ) echo "Invalid selection"; exit;; esac else # in developer console - export PS1="(InvokeAI) \u@\h \w> " python --version + echo "Press ^D to exit" + export PS1="(InvokeAI) \u@\h \w> " fi