Path: blob/master/webui-macos-env.sh
2305 views
#!/bin/bash1####################################################################2# macOS defaults #3# Please modify webui-user.sh to change these instead of this file #4####################################################################56export install_dir="$HOME"7export COMMANDLINE_ARGS="--skip-torch-cuda-test --upcast-sampling --no-half-vae --use-cpu interrogate"8export PYTORCH_ENABLE_MPS_FALLBACK=1910if [[ "$(sysctl -n machdep.cpu.brand_string)" =~ ^.*"Intel".*$ ]]; then11export TORCH_COMMAND="pip install torch==2.1.2 torchvision==0.16.2"12else13export TORCH_COMMAND="pip install torch==2.3.1 torchvision==0.18.1"14fi1516####################################################################171819