mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
3929bd3e13
* installer tweaks in preparation for v2.2.5 - pin numpy to 1.23.* to avoid requirements conflict with numba - update.sh and update.bat now accept a tag or branch string, not a URL - update scripts download latest requirements-base before updating. * update.bat.in debugged and working * update pulls from "latest" now * bump version number * fix permissions on create_installer.sh * give Linux user option of installing ROCm or CUDA * rc2.2.5 (install.sh) relative path fixes (#2155) * (installer) fix bug in resolution of relative paths in linux install script point installer at 2.2.5-rc1 selecting ~/Data/myapps/ as location would create a ./~/Data/myapps instead of expanding the ~/ to the value of ${HOME} also, squash the trailing slash in path, if it was entered by the user * (installer) add option to automatically start the app after install also: when exiting, print the command to get back into the app * remove extraneous whitespace * model_cache applies rootdir to config path * bring installers up to date with 2.2.5-rc2 * bump rc version * create_installer now adds version number * rebuild frontend * bump rc# * add locales to frontend dist package - bump to patchlevel 6 * bump patchlevel * use invoke-ai version of GFPGAN - This version is very slightly modified to allow weights files to be pre-downloaded by the configure script. * fix formatting error during startup * bump patch level * workaround #2 for GFPGAN facexlib() weights downloading * bump patch * ready for merge and release * remove extraneous comment * set PYTORCH_ENABLE_MPS_FALLBACK directly in invoke.py Co-authored-by: Eugene Brodsky <ebr@users.noreply.github.com>
60 lines
2.2 KiB
Bash
60 lines
2.2 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
if [ $# -ge 1 ] && [ "${1:0:2}" == "-h" ]; then
|
|
echo "Usage: update.sh <release>"
|
|
echo "Updates InvokeAI to use the indicated version of the code base."
|
|
echo "Find the version or branch for the release you want, and pass it as the argument."
|
|
echo "For example: update.sh v2.2.5 for release 2.2.5."
|
|
echo " update.sh main for the current development version."
|
|
echo ""
|
|
echo "If no argument provided then will install the version tagged with 'latest', equivalent to"
|
|
echo "update.sh latest"
|
|
exit -1
|
|
fi
|
|
|
|
INVOKE_AI_VERSION=${1:-latest}
|
|
|
|
INVOKE_AI_SRC="https://github.com/invoke-ai/InvokeAI/archive/$INVOKE_AI_VERSION.zip"
|
|
INVOKE_AI_DEP=https://raw.githubusercontent.com/invoke-ai/InvokeAI/$INVOKE_AI_VERSION/environments-and-requirements/requirements-base.txt
|
|
|
|
# ensure we're in the correct folder in case user's CWD is somewhere else
|
|
scriptdir=$(dirname "$0")
|
|
cd "$scriptdir"
|
|
|
|
function _err_exit {
|
|
if test "$1" -ne 0
|
|
then
|
|
echo "Something went wrong while installing InvokeAI and/or its requirements."
|
|
echo "Update cannot continue. Please report this error to https://github.com/invoke-ai/InvokeAI/issues"
|
|
echo -e "Error code $1; Error caught was '$2'"
|
|
read -p "Press any key to exit..."
|
|
exit
|
|
fi
|
|
}
|
|
|
|
if ! curl -I "$INVOKE_AI_DEP" -fs >/dev/null; then
|
|
echo \'$INVOKE_AI_VERSION\' is not a known branch name or tag. Please check the version and try again.
|
|
exit
|
|
fi
|
|
|
|
echo This script will update InvokeAI and all its dependencies to version \'$INVOKE_AI_VERSION\'.
|
|
echo If you do not want to do this, press control-C now!
|
|
read -p "Press any key to continue, or CTRL-C to exit..."
|
|
|
|
curl -L "$INVOKE_AI_DEP" > environments-and-requirements/requirements-base.txt
|
|
|
|
. .venv/bin/activate
|
|
|
|
./.venv/bin/python -mpip install -r requirements.txt
|
|
_err_exit $? "The pip program failed to install InvokeAI's requirements."
|
|
|
|
./.venv/bin/python -mpip install $INVOKE_AI_SRC
|
|
_err_exit $? "The pip program failed to install InvokeAI."
|
|
|
|
echo InvokeAI updated to \'$INVOKE_AI_VERSION\'
|
|
|
|
# ./.venv/bin/python .venv/bin/configure_invokeai.py --root .
|
|
# _err_exit $? "The configure script failed to run successfully."
|