From 307e08653c2fbbc7aa298d0465fe206cfb4cea3d Mon Sep 17 00:00:00 2001 From: Disty0 Date: Fri, 11 Aug 2023 01:15:16 +0300 Subject: [PATCH] Fix compel install --- installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer.py b/installer.py index f81117a1a..d5cd9580d 100644 --- a/installer.py +++ b/installer.py @@ -429,7 +429,7 @@ def install_packages(): install(invisiblewatermark_package, 'invisible-watermark') install('onnxruntime==1.15.1', 'onnxruntime', ignore=True) install('pi-heif', 'pi_heif', ignore=True) - install('compel', 'git+https://github.com/damian0815/compel', ignore=True) + install('git+https://github.com/damian0815/compel', 'compel', ignore=True) tensorflow_package = os.environ.get('TENSORFLOW_PACKAGE', 'tensorflow==2.13.0') install(tensorflow_package, 'tensorflow', ignore=True) bitsandbytes_package = os.environ.get('BITSANDBYTES_PACKAGE', None)