diff --git a/requirements.txt b/requirements.txt index c6d46fa25..75d03af94 100644 --- a/requirements.txt +++ b/requirements.txt @@ -72,3 +72,4 @@ rank-bm25==0.2.2 # for tool recommendation jieba==0.42.1 # for tool recommendation gymnasium==0.29.1 timm + diff --git a/setup.py b/setup.py index d33ac8e0f..22782a5c3 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,6 @@ extras_require = { "android_assistant": [ "pyshine==0.0.9", "opencv-python==4.6.0.66", - "git+https://github.com/openai/CLIP.git", "protobuf<3.20,>=3.9.2", "modelscope", "tensorflow==2.9.1; os_name == 'linux'", @@ -114,4 +113,7 @@ setup( ], }, include_package_data=True, + dependency_links=[ + 'git+https://github.com/openai/CLIP.git', + ], )