diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2022-12-10 06:30:13 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-10 06:30:13 +0000 |
commit | 6edeabb700e6364ac22c5bb4c612f32c7c60f5a8 (patch) | |
tree | a48c055564bf754e5519c454ac2023c84e7a1d12 | |
parent | 3896242e9ecfe46c99bacdd1d590220f2510ebca (diff) | |
parent | 8bc16b7582406c54fb2aff586ed1f8d28cb3b69d (diff) | |
download | stable-diffusion-webui-gfx803-6edeabb700e6364ac22c5bb4c612f32c7c60f5a8.tar.gz stable-diffusion-webui-gfx803-6edeabb700e6364ac22c5bb4c612f32c7c60f5a8.tar.bz2 stable-diffusion-webui-gfx803-6edeabb700e6364ac22c5bb4c612f32c7c60f5a8.zip |
Merge pull request #5489 from brkirch/set-python_cmd
macOS install improvements
-rw-r--r-- | requirements.txt | 1 | ||||
-rw-r--r-- | webui-macos-env.sh | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/requirements.txt b/requirements.txt index 5f3d9623..05818aa6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -30,3 +30,4 @@ inflection GitPython
torchsde
safetensors
+psutil; sys_platform == 'darwin'
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" |