Show the next steps to the user; Allow starting the command-line or web UI

This commit is contained in:
cmdr2
2022-10-29 21:16:40 +05:30
parent 29d9ce03ab
commit bc7bfed0d3
4 changed files with 31 additions and 19 deletions

View File

@ -88,11 +88,8 @@ call python scripts\preload_models.py
@rem make the models dir
mkdir models\ldm\stable-diffusion-v1
@rem tell the user that they need to download the ckpt
@rem tell the user their next steps
echo.
echo "Now you need to install the weights for the stable diffusion model."
echo "Please follow the steps at https://invoke-ai.github.io/InvokeAI/installation/INSTALL_WINDOWS/ to complete the installation"
@rem it would be nice if the weights downloaded automatically, and didn't need the user to do this manually.
echo "You can now start generating images by double-clicking the 'invoke.bat' file (inside this folder)
pause

View File

@ -110,14 +110,5 @@ python scripts/preload_models.py
# make the models dir
mkdir models/ldm/stable-diffusion-v1
# tell the user that they need to download the ckpt
WEIGHTS_DOC_URL="https://invoke-ai.github.io/InvokeAI/installation/INSTALL_LINUX/"
if [ "$OS_NAME" == "mac" ]; then
WEIGHTS_DOC_URL="https://invoke-ai.github.io/InvokeAI/installation/INSTALL_MAC/"
fi
echo ""
echo "Now you need to install the weights for the stable diffusion model."
echo "Please follow the steps at $WEIGHTS_DOC_URL to complete the installation"
# it would be nice if the weights downloaded automatically, and didn't need the user to do this manually.
# tell the user their next steps
echo "You can now start generating images by running invoke.sh (inside this folder), using ./invoke.sh"