mirror of
https://github.com/Bing-su/adetailer.git
synced 2026-03-11 00:10:05 +00:00
feat(install): use uv
한국인이 원하는 속도감
This commit is contained in:
16
install.py
16
install.py
@@ -1,6 +1,7 @@
|
||||
from __future__ import annotations
|
||||
|
||||
import importlib.util
|
||||
import os
|
||||
import subprocess
|
||||
import sys
|
||||
from importlib.metadata import version # python >= 3.8
|
||||
@@ -38,7 +39,11 @@ def is_installed(
|
||||
|
||||
|
||||
def run_pip(*args):
|
||||
subprocess.run([sys.executable, "-m", "pip", "install", *args])
|
||||
subprocess.run([sys.executable, "-m", "pip", "install", *args], check=False)
|
||||
|
||||
|
||||
def run_uv_pip(*args):
|
||||
subprocess.run([sys.executable, "-m", "uv", "pip", "install", *args], check=False)
|
||||
|
||||
|
||||
def install():
|
||||
@@ -51,6 +56,12 @@ def install():
|
||||
("protobuf", "4.25.3", "4.9999"),
|
||||
]
|
||||
|
||||
if not is_installed("uv", "0.1.44", None):
|
||||
run_pip("uv>=0.1.44")
|
||||
|
||||
os.environ["UV_PYTHON"] = sys.executable
|
||||
|
||||
pkgs = []
|
||||
for pkg, low, high in deps:
|
||||
if not is_installed(pkg, low, high):
|
||||
if low and high:
|
||||
@@ -61,8 +72,9 @@ def install():
|
||||
cmd = f"{pkg}<={high}"
|
||||
else:
|
||||
cmd = pkg
|
||||
pkgs.append(cmd)
|
||||
|
||||
run_pip("-U", cmd)
|
||||
run_uv_pip(*pkgs)
|
||||
|
||||
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user