aboutsummaryrefslogtreecommitdiff
path: root/launch.py
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2023-05-18 10:12:41 +0300
committerGitHub <noreply@github.com>2023-05-18 10:12:41 +0300
commitb4b42de9d5956c68151c296926a98e487d2fffae (patch)
treec95f2e531cc34475eb39266add6d12a2a5e1e2b3 /launch.py
parent983f2c494ad8fed2f08193681ba0bf5dda01555a (diff)
parent182330ae40c93b761fced8d03bbdd8523f1739d0 (diff)
Merge pull request #10438 from bobzilladev/ngrok-py
Use ngrok-py library
Diffstat (limited to 'launch.py')
-rw-r--r--launch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/launch.py b/launch.py
index f8380911..a3261c0c 100644
--- a/launch.py
+++ b/launch.py
@@ -280,8 +280,8 @@ def prepare_environment():
elif platform.system() == "Linux":
run_pip(f"install {xformers_package}", "xformers")
- if not is_installed("pyngrok") and args.ngrok:
- run_pip("install pyngrok", "ngrok")
+ if not is_installed("ngrok") and args.ngrok:
+ run_pip("install ngrok", "ngrok")
os.makedirs(os.path.join(script_path, dir_repos), exist_ok=True)