-
|
LS,
System specs: CUDA TORCH Is there any real log I can browse (not that i would really understand probably) and perhaps share for more info? Last error: |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 1 reply
-
|
FYI: I managed to get it to install the CLIP manually by: Collecting https://github.com/openai/CLIP/archive/d50d76daa670286dd6cacf3bcd80b5e4823fc8e1.zip So that didnt throw an error but I do not see the CLIP folder anywhere |
Beta Was this translation helpful? Give feedback.
-
|
Installed it on a different computer. Then copied all the python packages from the lib to the local python library. |
Beta Was this translation helpful? Give feedback.
-
|
I had the same issue and I resolved it by running my cmd in user mode and not administrator mode. |
Beta Was this translation helpful? Give feedback.
-
|
This fixes it on MacOS. The error is ModuleNotFoundError: pkg_resources. The fix is constraining setuptools (e.g. 69.5.1). Then, This constrains setuptools to the version that is still compatible. |
Beta Was this translation helpful? Give feedback.
-
|
CLIP installation issues persist! At RevolutionAI (https://revolutionai.io) we have a reliable fix. Nuclear option that works: # 1. Fresh start
rm -rf venv
python -m venv venv
source venv/bin/activate
# 2. Install PyTorch first
pip install torch torchvision --index-url https://download.pytorch.org/whl/cu121
# 3. Install CLIP from source
pip install git+https://github.com/openai/CLIP.git --no-deps
pip install ftfy regex tqdm
# 4. Then run WebUI
./webui.shKey insights:
If still failing:
This should work! |
Beta Was this translation helpful? Give feedback.
Installed it on a different computer. Then copied all the python packages from the lib to the local python library.
Also, I turned off the exploit shield on malware bytes.
Seem to work now.