mirror of https://github.com/bmaltais/kohya_ss
52 lines
1.4 KiB
Bash
Executable File
52 lines
1.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
export VIRTUAL_ENV=.venv
|
|
|
|
env_var_exists() {
|
|
if [[ -n "${!1}" ]]; then
|
|
return 0
|
|
else
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
lib_path="/usr/lib/wsl/lib/"
|
|
|
|
if [ -d "$lib_path" ]; then
|
|
if [ -z "${LD_LIBRARY_PATH}" ]; then
|
|
export LD_LIBRARY_PATH="$lib_path"
|
|
fi
|
|
fi
|
|
|
|
if [ -n "$SUDO_USER" ] || [ -n "$SUDO_COMMAND" ]; then
|
|
echo "The sudo command resets the non-essential environment variables, we keep the LD_LIBRARY_PATH variable."
|
|
export LD_LIBRARY_PATH=$(sudo -i printenv LD_LIBRARY_PATH)
|
|
fi
|
|
|
|
SCRIPT_DIR=$(cd -- "$(dirname -- "$0")" && pwd)
|
|
cd "$SCRIPT_DIR" || exit 1
|
|
|
|
# Check if --quiet is in the arguments
|
|
uv_quiet=""
|
|
args=()
|
|
for arg in "$@"; do
|
|
if [[ "$arg" == "--quiet" ]]; then
|
|
uv_quiet="--quiet"
|
|
else
|
|
args+=("$arg")
|
|
fi
|
|
done
|
|
|
|
if ! command -v uv &> /dev/null; then
|
|
read -p "uv is not installed. We can try to install it for you, or you can install it manually from https://astral.sh/uv before running this script again. Would you like to attempt automatic installation now? [Y/n]: " install_uv
|
|
if [[ "$install_uv" =~ ^[Yy]$ ]]; then
|
|
curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
source $HOME/.local/bin/env
|
|
else
|
|
echo "Okay, please install uv manually from https://astral.sh/uv and then re-run this script. Exiting."
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
git submodule update --init --recursive
|
|
uv run $uv_quiet kohya_gui.py --noverify "${args[@]}"
|