diff options
author | bobzilladev <bob@ngrok.com> | 2023-05-16 17:15:30 +0000 |
---|---|---|
committer | bobzilladev <bob@ngrok.com> | 2023-05-16 20:09:41 +0000 |
commit | 0d31f20cbd556ea4ba3d8ad9254bcce71c32088c (patch) | |
tree | c123dec9abbe2345ac45912b5d9738e2cb24c007 /launch.py | |
parent | 89f9faa63388756314e8a1d96cf86bf5e0663045 (diff) | |
download | stable-diffusion-webui-gfx803-0d31f20cbd556ea4ba3d8ad9254bcce71c32088c.tar.gz stable-diffusion-webui-gfx803-0d31f20cbd556ea4ba3d8ad9254bcce71c32088c.tar.bz2 stable-diffusion-webui-gfx803-0d31f20cbd556ea4ba3d8ad9254bcce71c32088c.zip |
Use ngrok-py library
Diffstat (limited to 'launch.py')
-rw-r--r-- | launch.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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)
|