From d8447ef1a9184c20dabc23b5ef52f53b09ce81a5 Mon Sep 17 00:00:00 2001 From: JeLuF Date: Tue, 9 May 2023 18:04:45 +0200 Subject: [PATCH 01/45] Unset PYTHONHOME in Start Stable Diffusion UI.cmd PYTHONHOME needs to be deleted before conda gets called for the first time. --- scripts/Start Stable Diffusion UI.cmd | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/Start Stable Diffusion UI.cmd b/scripts/Start Stable Diffusion UI.cmd index 4f8555ea..27628441 100644 --- a/scripts/Start Stable Diffusion UI.cmd +++ b/scripts/Start Stable Diffusion UI.cmd @@ -4,6 +4,7 @@ cd /d %~dp0 echo Install dir: %~dp0 set PATH=C:\Windows\System32;%PATH% +set PYTHONHOME= if exist "on_sd_start.bat" ( echo ================================================================================ From c0dcf1633c35a18359d54aa8c5fbc6fa7daee104 Mon Sep 17 00:00:00 2001 From: JeLuF Date: Tue, 9 May 2023 18:07:46 +0200 Subject: [PATCH 02/45] Unset PYTHONHOME in start.sh --- scripts/start.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/start.sh b/scripts/start.sh index 3d8a585d..b309216a 100755 --- a/scripts/start.sh +++ b/scripts/start.sh @@ -19,6 +19,7 @@ if [ -f "on_sd_start.bat" ]; then exit 1 fi +unset PYTHONHOME # set legacy installer's PATH, if it exists if [ -e "installer" ]; then export PATH="$(pwd)/installer/bin:$PATH"; fi From 2adf43274c1f6e26176151647015c0ab548a18e0 Mon Sep 17 00:00:00 2001 From: cmdr2 Date: Thu, 3 Aug 2023 21:01:21 +0530 Subject: [PATCH 03/45] Fix regression with new installations not being able to start ED --- ui/main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/main.py b/ui/main.py index f5998622..8647b9ff 100644 --- a/ui/main.py +++ b/ui/main.py @@ -1,11 +1,12 @@ from easydiffusion import model_manager, app, server from easydiffusion.server import server_api # required for uvicorn +app.init() + server.init() # Init the app model_manager.init() -app.init() app.init_render_threads() # start the browser ui From 91fb82e9b67674daecd6e5dfb65d66725888c4f5 Mon Sep 17 00:00:00 2001 From: JeLuF Date: Mon, 14 Aug 2023 14:57:14 +0200 Subject: [PATCH 04/45] Mention minimum CUDA HW level (#1472) --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8acafd76..3266b10a 100644 --- a/README.md +++ b/README.md @@ -17,12 +17,15 @@ Click the download button for your operating system:

**Hardware requirements:** -- **Windows:** NVIDIA graphics card (minimum 2 GB RAM), or run on your CPU. -- **Linux:** NVIDIA or AMD graphics card (minimum 2 GB RAM), or run on your CPU. +- **Windows:** NVIDIA graphics card¹ (minimum 2 GB RAM), or run on your CPU. +- **Linux:** NVIDIA¹ or AMD² graphics card (minimum 2 GB RAM), or run on your CPU. - **Mac:** M1 or M2, or run on your CPU. - Minimum 8 GB of system RAM. - Atleast 25 GB of space on the hard disk. +¹) [CUDA Compute capability](https://en.wikipedia.org/wiki/CUDA#GPUs_supported) level of 3.7 or higher required. + +²) ROCm 5.2 support required. The installer will take care of whatever is needed. If you face any problems, you can join the friendly [Discord community](https://discord.com/invite/u9yhsFmEkB) and ask for assistance. From 796c12bc4c7e841c6874e6cbc41b0365276e3858 Mon Sep 17 00:00:00 2001 From: cmdr2 Date: Wed, 23 Aug 2023 13:21:10 +0530 Subject: [PATCH 05/45] Update index.html --- ui/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/index.html b/ui/index.html index 7cedc0e5..a95fa04f 100644 --- a/ui/index.html +++ b/ui/index.html @@ -721,7 +721,7 @@