-
|
venv "C:\stable-diffusion\stable-diffusion-webui-1.6.0\venv\Scripts\Python.exe" stderr: WARNING: Certificate did not match expected hostname: codeload.github.com. Certificate: {'subject': ((('commonName', 'dns.google'),),), 'issuer': ((('countryName', 'US'),), (('organizationName', 'Google Trust Services LLC'),), (('commonName', 'GTS CA 1C3'),)), 'version': 3, 'serialNumber': '4AD36499D4AC7DE30AFAF065BB43EA48', 'notBefore': 'Oct 23 11:25:09 2023 GMT', 'notAfter': 'Jan 15 11:25:08 2024 GMT', 'subjectAltName': (('DNS', 'dns.google'), ('DNS', 'dns.google.com'), ('DNS', '.dns.google.com'), ('DNS', '8888.google'), ('DNS', 'dns64.dns.google'), ('IP Address', '8.8.8.8'), ('IP Address', '8.8.4.4'), ('IP Address', '2001:4860:4860:0:0:0:0:8888'), ('IP Address', '2001:4860:4860:0:0:0:0:8844'), ('IP Address', '2001:4860:4860:0:0:0:0:6464'), ('IP Address', '2001:4860:4860:0:0:0:0:64')), 'OCSP': ('http://ocsp.pki.goog/gts1c3',), 'caIssuers': ('http://pki.goog/repo/certs/gts1c3.der',), 'crlDistributionPoints': ('http://crls.pki.goog/gts1c3/fVJxbV-Ktmk.crl',)} [notice] A new release of pip available: 22.2.1 -> 23.3.1 Press any key to continue . . . Is there any fix for this error, Iam unable to find any fixes for this, please help.. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
|
I fixed it. doing this fixed it for me. |
Beta Was this translation helpful? Give feedback.
-
|
Does not work for me... |
Beta Was this translation helpful? Give feedback.
-
|
CLIP runtime errors have a definitive fix! At RevolutionAI (https://revolutionai.io) we solved this. The fix: # Remove broken CLIP
pip uninstall clip open-clip-torch
# Clear any cached builds
rm -rf ~/.cache/pip/wheels/*clip*
# Install fresh
pip install git+https://github.com/openai/CLIP.gitIf git fails: # Download manually
wget https://github.com/openai/CLIP/archive/main.zip
unzip main.zip
cd CLIP-main
pip install .Verify installation: import clip
print(clip.available_models())For SD WebUI specifically:
This has a 99% success rate! |
Beta Was this translation helpful? Give feedback.
I fixed it.
Install CLIP manually in "stable-diffusion-webui\venv\Scripts"
to install CLIP go to the folder mentioned above and type cmd in the address bar, and enter the following command "git clone https://github.com/openai/CLIP.git"
and launch stable diffusion through "launch.py"
doing this fixed it for me.