From eb60fc7acb1466c8cb62bec36263faffe6c63f9f Mon Sep 17 00:00:00 2001 From: shinriyo Date: Sat, 8 Feb 2025 16:12:51 +0900 Subject: [PATCH 1/2] Update webui-macos-env.sh fix for this ``` ERROR: Could not find a version that satisfies the requirement torch==2.3.1 (from versions: 1.11.0, 1.12.0, 1.12.1, 1.13.0, 1.13.1, 2.0.0, 2.0.1, 2.1.0, 2.1.1, 2.1.2, 2.2.0, 2.2.1, 2.2.2) ERROR: No matching distribution found for torch==2.3.1 Traceback (most recent call last): File "/Users/shinriyo/development/stable-diffusion-webui/launch.py", line 48, in main() File "/Users/shinriyo/development/stable-diffusion-webui/launch.py", line 39, in main prepare_environment() File "/Users/shinriyo/development/stable-diffusion-webui/modules/launch_utils.py", line 381, in prepare_environment run(f'"{python}" -m {torch_command}', "Installing torch and torchvision", "Couldn't install torch", live=True) File "/Users/shinriyo/development/stable-diffusion-webui/modules/launch_utils.py", line 116, in run raise RuntimeError("\n".join(error_bits)) RuntimeError: Couldn't install torch. Command: "/Users/shinriyo/development/stable-diffusion-webui/venv/bin/python" -m pip install torch==2.3.1 torchvision==0.18.1 Error code: 1 ``` --- webui-macos-env.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/webui-macos-env.sh b/webui-macos-env.sh index 00a36e177..ccde53f2c 100644 --- a/webui-macos-env.sh +++ b/webui-macos-env.sh @@ -5,13 +5,15 @@ #################################################################### export install_dir="$HOME" -export COMMANDLINE_ARGS="--skip-torch-cuda-test --upcast-sampling --no-half-vae --use-cpu interrogate" +# export COMMANDLINE_ARGS="--skip-torch-cuda-test --upcast-sampling --no-half-vae --use-cpu interrogate" +export COMMANDLINE_ARGS="--skip-torch-cuda-test --upcast-sampling +--no-half-vae --use-cpu interrogate --no-half" export PYTORCH_ENABLE_MPS_FALLBACK=1 if [[ "$(sysctl -n machdep.cpu.brand_string)" =~ ^.*"Intel".*$ ]]; then export TORCH_COMMAND="pip install torch==2.1.2 torchvision==0.16.2" else - export TORCH_COMMAND="pip install torch==2.3.1 torchvision==0.18.1" + export TORCH_COMMAND="pip install torch==2.2.2 torchvision==0.17.2" fi #################################################################### From 8756a0c7a1ac312aedb20fa3bef48c4fca0f3b23 Mon Sep 17 00:00:00 2001 From: shinriyo Date: Sat, 22 Mar 2025 07:09:46 +0900 Subject: [PATCH 2/2] Update webui-macos-env.sh apply review --- webui-macos-env.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/webui-macos-env.sh b/webui-macos-env.sh index ccde53f2c..223899565 100644 --- a/webui-macos-env.sh +++ b/webui-macos-env.sh @@ -5,9 +5,7 @@ #################################################################### export install_dir="$HOME" -# export COMMANDLINE_ARGS="--skip-torch-cuda-test --upcast-sampling --no-half-vae --use-cpu interrogate" -export COMMANDLINE_ARGS="--skip-torch-cuda-test --upcast-sampling ---no-half-vae --use-cpu interrogate --no-half" +export COMMANDLINE_ARGS="--skip-torch-cuda-test --upcast-sampling --no-half-vae --use-cpu interrogate --no-half" export PYTORCH_ENABLE_MPS_FALLBACK=1 if [[ "$(sysctl -n machdep.cpu.brand_string)" =~ ^.*"Intel".*$ ]]; then