Skip to content

Commit aa3cba0

Browse files
committed
update
1 parent e0dd4d5 commit aa3cba0

File tree

2 files changed

+35
-14
lines changed

2 files changed

+35
-14
lines changed

gui.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import subprocess
66
import sys
77

8-
from mikazuki.launch_utils import (base_dir_path, catch_exception,
8+
from mikazuki.launch_utils import (base_dir_path, catch_exception, git_tag,
99
prepare_environment, check_port_avaliable, find_avaliable_ports)
1010
from mikazuki.log import log
1111

@@ -53,7 +53,7 @@ def run_tag_editor():
5353
def launch():
5454
log.info("Starting SD-Trainer Mikazuki GUI...")
5555
log.info(f"Base directory: {base_dir_path()}, Working directory: {os.getcwd()}")
56-
log.info(f'{platform.system()} Python {platform.python_version()} {sys.executable}')
56+
log.info(f"{platform.system()} Python {platform.python_version()} {sys.executable}")
5757

5858
if not args.skip_prepare_environment:
5959
prepare_environment(disable_auto_mirror=args.disable_auto_mirror, skip_prepare_onnxruntime=args.skip_prepare_onnxruntime)
@@ -65,6 +65,8 @@ def launch():
6565
else:
6666
log.error("port finding fallback error")
6767

68+
log.info(f"SD-Trainer Version: {git_tag(base_dir_path())}")
69+
6870
os.environ["MIKAZUKI_HOST"] = args.host
6971
os.environ["MIKAZUKI_PORT"] = str(args.port)
7072
os.environ["MIKAZUKI_TENSORBOARD_HOST"] = args.tensorboard_host

mikazuki/launch_utils.py

+31-12
Original file line numberDiff line numberDiff line change
@@ -23,34 +23,53 @@ def base_dir_path():
2323

2424

2525
def find_windows_git():
26-
possible_paths = ["git\\bin\\git.exe", "git\\cmd\\git.exe", "Git\\mingw64\\libexec\\git-core\\git.exe"]
26+
possible_paths = ["git\\bin\\git.exe", "git\\cmd\\git.exe", "Git\\mingw64\\libexec\\git-core\\git.exe", "C:\\Program Files\\Git\\cmd\\git.exe"]
2727
for path in possible_paths:
2828
if os.path.exists(path):
2929
return path
3030

3131

32+
def prepare_git():
33+
if shutil.which("git"):
34+
return True
35+
36+
log.info("Finding git...")
37+
38+
if sys.platform == "win32":
39+
git_path = find_windows_git()
40+
41+
if git_path is not None:
42+
log.info(f"Git not found, but found git in {git_path}, add it to PATH")
43+
os.environ["PATH"] += os.pathsep + os.path.dirname(git_path)
44+
return True
45+
else:
46+
return False
47+
else:
48+
log.error("git not found, please install git first")
49+
return False
50+
51+
3252
def prepare_submodules():
3353
frontend_path = base_dir_path() / "frontend" / "dist"
3454
tag_editor_path = base_dir_path() / "mikazuki" / "dataset-tag-editor" / "scripts"
3555

3656
if not os.path.exists(frontend_path) or not os.path.exists(tag_editor_path):
3757
log.info("submodule not found, try clone...")
3858
log.info("checking git installation...")
39-
if not shutil.which("git"):
40-
if sys.platform == "win32":
41-
git_path = find_windows_git()
42-
43-
if git_path is not None:
44-
log.info(f"Git not found, but found git in {git_path}, add it to PATH")
45-
os.environ["PATH"] += os.pathsep + os.path.dirname(git_path)
46-
return
47-
else:
48-
log.error("git not found, please install git first")
49-
sys.exit(1)
59+
if not prepare_git():
60+
log.error("git not found, please install git first")
61+
sys.exit(1)
5062
subprocess.run(["git", "submodule", "init"])
5163
subprocess.run(["git", "submodule", "update"])
5264

5365

66+
def git_tag(path: str) -> str:
67+
try:
68+
return subprocess.check_output(["git", "-C", path, "describe", "--tags"]).strip().decode("utf-8")
69+
except Exception as e:
70+
return "<none>"
71+
72+
5473
def check_dirs(dirs: List):
5574
for d in dirs:
5675
if not os.path.exists(d):

0 commit comments

Comments
 (0)