aboutsummaryrefslogtreecommitdiff
path: root/webui-macos-env.sh
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2022-12-10 09:30:13 +0300
committerGitHub <noreply@github.com>2022-12-10 09:30:13 +0300
commit6edeabb700e6364ac22c5bb4c612f32c7c60f5a8 (patch)
treea48c055564bf754e5519c454ac2023c84e7a1d12 /webui-macos-env.sh
parent3896242e9ecfe46c99bacdd1d590220f2510ebca (diff)
parent8bc16b7582406c54fb2aff586ed1f8d28cb3b69d (diff)
Merge pull request #5489 from brkirch/set-python_cmd
macOS install improvements
Diffstat (limited to 'webui-macos-env.sh')
-rw-r--r--webui-macos-env.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/webui-macos-env.sh b/webui-macos-env.sh
index 68d1f754..95ca9c55 100644
--- a/webui-macos-env.sh
+++ b/webui-macos-env.sh
@@ -4,6 +4,12 @@
# Please modify webui-user.sh to change these instead of this file #
####################################################################
+if [[ -x "$(command -v python3.10)" ]]
+then
+ python_cmd="python3.10"
+fi
+
+export install_dir="$HOME"
export COMMANDLINE_ARGS="--skip-torch-cuda-test --no-half --use-cpu interrogate"
export TORCH_COMMAND="pip install torch==1.12.1 torchvision==0.13.1"
export K_DIFFUSION_REPO="https://github.com/brkirch/k-diffusion.git"