2022-12-03 15:28:53 +08:00
|
|
|
#!/bin/bash
|
|
|
|
####################################################################
|
|
|
|
# macOS defaults #
|
|
|
|
# Please modify webui-user.sh to change these instead of this file #
|
|
|
|
####################################################################
|
|
|
|
|
2022-12-04 21:29:10 +08:00
|
|
|
if [[ -x "$(command -v python3.10)" ]]
|
|
|
|
then
|
|
|
|
python_cmd="python3.10"
|
|
|
|
fi
|
|
|
|
|
2022-12-04 21:29:45 +08:00
|
|
|
export install_dir="$HOME"
|
2023-01-28 13:16:22 +08:00
|
|
|
export COMMANDLINE_ARGS="--skip-torch-cuda-test --upcast-sampling --no-half-vae --use-cpu interrogate"
|
2023-05-12 23:15:43 +08:00
|
|
|
export TORCH_COMMAND="pip install torch==2.0.1 torchvision==0.15.2"
|
2022-12-03 15:28:53 +08:00
|
|
|
export PYTORCH_ENABLE_MPS_FALLBACK=1
|
|
|
|
|
|
|
|
####################################################################
|