From 8ece636796db0f81d0fb8d859347d03f85b084b7 Mon Sep 17 00:00:00 2001 From: bmaltais Date: Fri, 23 Jun 2023 13:22:18 -0400 Subject: [PATCH] Update readme --- README.md | 4 ++++ gui.bat | 2 +- setup.bat | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a527d1ab7..7eb98ca6b 100644 --- a/README.md +++ b/README.md @@ -355,6 +355,10 @@ This will store a backup file with your current locally installed pip packages a ## Change History +* 2023/06/23 (v21.7.11) +- This is a significant update to how setup work across different platform. It might be causing issues... especially for linux env like runpod. If you encounter problems please report them in the issues so I can try to address them. You can revert to the previous release with `git checkout v21.7.10` + +The setup solution is now much more modulat and will simplify requirements support across different environments... hoping this will make it easier to run on different OS. * 2023/06/19 (v21.7.10) - Quick fix for linux GUI startup where it would try to install darwin requirements on top of linux. Ugly fix but work. Hopefulle some linux user will improve via a PR. * 2023/06/18 (v21.7.9) diff --git a/gui.bat b/gui.bat index 15e360fe3..7b2968a0b 100644 --- a/gui.bat +++ b/gui.bat @@ -14,5 +14,5 @@ python.exe .\setup\validate_requirements.py :: If the exit code is 0, run the kohya_gui.py script with the command-line arguments if %errorlevel% equ 0 ( - python.exe kohya_gui.py %* + cmd /k python.exe kohya_gui.py %* ) \ No newline at end of file diff --git a/setup.bat b/setup.bat index 222e8033a..a4658a804 100644 --- a/setup.bat +++ b/setup.bat @@ -24,7 +24,7 @@ python .\setup\check_local_modules.py call .\venv\Scripts\activate.bat -python .\setup\setup_windows.py +cmd /k python .\setup\setup_windows.py :: Deactivate the virtual environment call .\venv\Scripts\deactivate.bat \ No newline at end of file