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>
71 lines
2.1 KiB
Bash
Executable File
71 lines
2.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
VERSION=$(grep ^VERSION ../setup.py | awk '{ print $3 }' | sed "s/'//g" )
|
|
PATCH=""
|
|
VERSION="v${VERSION}${PATCH}"
|
|
|
|
echo "Be certain that you're in the 'installer' directory before continuing."
|
|
read -p "Press any key to continue, or CTRL-C to exit..."
|
|
|
|
git commit -a
|
|
|
|
if ! git tag $VERSION ; then
|
|
echo "Existing/invalid tag"
|
|
exit -1
|
|
fi
|
|
|
|
git push origin :refs/tags/latest
|
|
git tag -fa latest
|
|
|
|
echo Building installer zip fles for InvokeAI $VERSION
|
|
|
|
# get rid of any old ones
|
|
rm *.zip
|
|
|
|
rm -rf InvokeAI-Installer
|
|
mkdir InvokeAI-Installer
|
|
|
|
cp -pr ../environments-and-requirements templates readme.txt InvokeAI-Installer/
|
|
mkdir InvokeAI-Installer/templates/rootdir
|
|
|
|
cp -pr ../configs InvokeAI-Installer/templates/rootdir/
|
|
|
|
mkdir InvokeAI-Installer/templates/rootdir/{outputs,embeddings,models}
|
|
|
|
perl -p -e "s/^INVOKEAI_VERSION=.*/INVOKEAI_VERSION=\"$VERSION\"/" install.sh.in > InvokeAI-Installer/install.sh
|
|
chmod a+rx InvokeAI-Installer/install.sh
|
|
|
|
zip -r InvokeAI-installer-$VERSION-linux.zip InvokeAI-Installer
|
|
zip -r InvokeAI-installer-$VERSION-mac.zip InvokeAI-Installer
|
|
|
|
# now do the windows installer
|
|
rm InvokeAI-Installer/install.sh
|
|
perl -p -e "s/^set INVOKEAI_VERSION=.*/set INVOKEAI_VERSION=$VERSION/" install.bat.in > InvokeAI-Installer/install.bat
|
|
cp WinLongPathsEnabled.reg InvokeAI-Installer/
|
|
|
|
# this gets rid of the "-e ." at the end of the windows requirements file
|
|
# because it is easier to do it now than in the .bat install script
|
|
egrep -v '^-e .' InvokeAI-Installer/environments-and-requirements/requirements-win-colab-cuda.txt > InvokeAI-Installer/requirements.txt
|
|
cp InvokeAI-Installer/requirements.txt InvokeAI-Installer/environments-and-requirements/requirements-win-colab-cuda.txt
|
|
zip -r InvokeAI-installer-$VERSION-windows.zip InvokeAI-Installer
|
|
|
|
mkdir tmp
|
|
cp templates/update.sh.in tmp/update.sh
|
|
cp templates/update.bat.in tmp/update.bat
|
|
chmod +x tmp/update.sh
|
|
chmod +x tmp/update.bat
|
|
cd tmp
|
|
zip InvokeAI-updater-$VERSION.zip update.sh update.bat
|
|
cd ..
|
|
mv tmp/InvokeAI-updater-$VERSION.zip .
|
|
|
|
# clean up
|
|
rm -rf InvokeAI-Installer tmp
|
|
|
|
|
|
exit 0
|
|
|
|
|