diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-04-29 20:02:23 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-04-29 20:02:23 +0000 |
commit | 5e4a0e3d2413e49ad57972e1fc4b54b3109e310c (patch) | |
tree | 6e3f19f4bd84882a10a81b77d3981c71943965c1 | |
parent | ab287682bfe7ec6f44bdbe8d5cb69934a5cf5340 (diff) | |
download | stable-diffusion-webui-gfx803-5e4a0e3d2413e49ad57972e1fc4b54b3109e310c.tar.gz stable-diffusion-webui-gfx803-5e4a0e3d2413e49ad57972e1fc4b54b3109e310c.tar.bz2 stable-diffusion-webui-gfx803-5e4a0e3d2413e49ad57972e1fc4b54b3109e310c.zip |
attempt to fix broken github CI
-rw-r--r-- | launch.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -222,7 +222,7 @@ def run_extensions_installers(settings_file): def prepare_environment():
- torch_command = os.environ.get('TORCH_COMMAND', "pip install torch==2.0.0 torchvision==0.15.1 --index-url https://download.pytorch.org/whl/cu118")
+ torch_command = os.environ.get('TORCH_COMMAND', "pip install torch==2.0.0 torchvision==0.15.1 --extra-index-url https://download.pytorch.org/whl/cu118")
requirements_file = os.environ.get('REQS_FILE', "requirements_versions.txt")
xformers_package = os.environ.get('XFORMERS_PACKAGE', 'xformers==0.0.17')
|