remove launch package from install script dependencies

pull/273/head
Ryan Haines 2023-10-17 17:59:20 -04:00
parent 9a16e72823
commit e288d6fbbe
1 changed files with 6 additions and 30 deletions

View File

@ -1,6 +1,5 @@
import launch
import os
import pkg_resources
import subprocess
import sys
from tqdm import tqdm
import urllib.request
@ -24,31 +23,8 @@ if not os.path.exists(models_dir):
if not os.path.exists(model_path):
download(model_url, model_path)
print("Checking roop requirements")
with open(req_file) as file:
for package in file:
try:
python = sys.executable
package = package.strip()
if not launch.is_installed(package):
print(f"Install {package}")
launch.run_pip(
f"install {package}", f"sd-webui-roop requirement: {package}"
)
elif "==" in package:
package_name, package_version = package.split("==")
installed_version = pkg_resources.get_distribution(package_name).version
if installed_version != package_version:
print(
f"Install {package}, {installed_version} vs {package_version}"
)
launch.run_pip(
f"install {package}",
f"sd-webui-roop requirement: changing {package_name} version from {installed_version} to {package_version}",
)
except Exception as e:
print(e)
print(f"Warning: Failed to install {package}, roop will not work.")
raise e
try:
subprocess.run(["pip", "install", "-r", req_file], check=True)
except subprocess.CalledProcessError as e:
print(f"Failed to install requirements: {e.stderr.decode('utf-8')}")
sys.exit(1)