aboutsummaryrefslogtreecommitdiff
path: root/launch.py
diff options
context:
space:
mode:
authorbobzilladev <bob@ngrok.com>2023-05-16 13:15:30 -0400
committerbobzilladev <bob@ngrok.com>2023-05-16 16:09:41 -0400
commit0d31f20cbd556ea4ba3d8ad9254bcce71c32088c (patch)
treec123dec9abbe2345ac45912b5d9738e2cb24c007 /launch.py
parent89f9faa63388756314e8a1d96cf86bf5e0663045 (diff)
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 cfc0cffa..871d3ea8 100644
--- a/launch.py
+++ b/launch.py
@@ -294,8 +294,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)