mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
51c283ba56
- 'install'/'invoke' scripts: use venv 'activate' script - 'setup.py': - make 'install_requires" accurate - add more details for eventual use in pypi - 'invoke' scripts: "developer" console invocation simplified/better logging - requirements: - move 'clipseg' package out of installer and into requirements where it should be - bump/pin 'accelerate' package to 0.14.0 to bypass torch 1.13 SIGKILL issue on Windows (prep for when we decide to upgrade) - 'requirements.in': pin torch as well to reduce pip-compile's confusion - notebooks: delete unused/deprecated notebook installer Signed-off-by: Ben Alkov <ben.alkov@gmail.com>
27 lines
876 B
Bash
Executable File
27 lines
876 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
IFS=$'\n\t'
|
|
|
|
source .venv/bin/activate
|
|
|
|
if [ "$0" != "bash" ]; then
|
|
echo "Do you want to generate images using the"
|
|
echo "1. command-line"
|
|
echo "2. browser-based UI"
|
|
echo "3. open the developer console"
|
|
read -p "Please enter 1, 2, or 3: " yn
|
|
case $yn in
|
|
1 ) printf "\nStarting the InvokeAI command-line..\n"; .venv/bin/python scripts/invoke.py;;
|
|
2 ) printf "\nStarting the InvokeAI browser-based UI..\n"; .venv/bin/python scripts/invoke.py --web;;
|
|
3 ) printf "\nDeveloper Console:\n"; file_name=$(basename "${BASH_SOURCE[0]}"); bash --init-file "$file_name";;
|
|
* ) echo "Invalid selection"; exit;;
|
|
esac
|
|
else # in developer console
|
|
echo "'python' command is:"
|
|
which python
|
|
echo "'python' version is:"
|
|
python --version
|
|
echo "Type 'exit' to quit this shell"
|
|
fi
|