From 662b435d4af8d7986d7bd6301dd04f04258c3554 Mon Sep 17 00:00:00 2001 From: Santiago Alvarez Date: Tue, 28 Mar 2023 19:14:14 -0300 Subject: [PATCH] delete install --- install.py | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 install.py diff --git a/install.py b/install.py deleted file mode 100644 index 2c8d851..0000000 --- a/install.py +++ /dev/null @@ -1,14 +0,0 @@ -import launch - -CI_VERSION = "0.6.0" -needs_install = False - -try: - import clip_interrogator - if clip_interrogator.__version__ != CI_VERSION: - needs_install = True -except ImportError: - needs_install = True - -if needs_install: - launch.run_pip(f"install clip-interrogator=={CI_VERSION}", "requirements for CLIP Interrogator")