mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-22 08:07:56 +01:00
Installer: add option to install requirements for just one extension
This commit is contained in:
parent
2174958362
commit
fcc92caa30
29
one_click.py
29
one_click.py
@ -200,6 +200,16 @@ def run_cmd(cmd, assert_success=False, environment=False, capture_output=False,
|
||||
return result
|
||||
|
||||
|
||||
def generate_alphabetic_sequence(index):
|
||||
result = ''
|
||||
while index >= 0:
|
||||
index, remainder = divmod(index, 26)
|
||||
result = chr(ord('A') + remainder) + result
|
||||
index -= 1
|
||||
|
||||
return result
|
||||
|
||||
|
||||
def get_user_choice(question, options_dict):
|
||||
print()
|
||||
print(question)
|
||||
@ -308,9 +318,13 @@ def install_webui():
|
||||
update_requirements(initial_installation=True)
|
||||
|
||||
|
||||
def get_extensions_names():
|
||||
return [foldername for foldername in os.listdir('extensions') if os.path.isfile(os.path.join('extensions', foldername, 'requirements.txt'))]
|
||||
|
||||
|
||||
def install_extensions_requirements():
|
||||
print_big_message("Installing extensions requirements.\nSome of these may fail on Windows.\nDon\'t worry if you see error messages, as they will not affect the main program.")
|
||||
extensions = [foldername for foldername in os.listdir('extensions') if os.path.isfile(os.path.join('extensions', foldername, 'requirements.txt'))]
|
||||
extensions = get_extensions_names()
|
||||
for i, extension in enumerate(extensions):
|
||||
print(f"\n\n--- [{i+1}/{len(extensions)}]: {extension}\n\n")
|
||||
extension_req_path = os.path.join("extensions", extension, "requirements.txt")
|
||||
@ -414,6 +428,7 @@ if __name__ == "__main__":
|
||||
args, _ = parser.parse_known_args()
|
||||
|
||||
if args.update_wizard:
|
||||
while True:
|
||||
choice = get_user_choice(
|
||||
"What would you like to do?",
|
||||
{
|
||||
@ -427,7 +442,19 @@ if __name__ == "__main__":
|
||||
if choice == 'A':
|
||||
update_requirements()
|
||||
elif choice == 'B':
|
||||
choices = {'A': 'All extensions'}
|
||||
for i, name in enumerate(get_extensions_names()):
|
||||
key = generate_alphabetic_sequence(i + 1)
|
||||
choices[key] = name
|
||||
|
||||
choice = get_user_choice("What extension?", choices)
|
||||
|
||||
if choice == 'A':
|
||||
install_extensions_requirements()
|
||||
else:
|
||||
extension_req_path = os.path.join("extensions", choices[choice], "requirements.txt")
|
||||
run_cmd(f"python -m pip install -r {extension_req_path} --upgrade", assert_success=False, environment=True)
|
||||
|
||||
update_requirements(pull=False)
|
||||
elif choice == 'C':
|
||||
run_cmd("git reset --hard", assert_success=True, environment=True)
|
||||
|
Loading…
Reference in New Issue
Block a user