I had an issue with urllib3.util.ssl when running ComfyUI after manual installation on Windows 10
- Dominant language
- Python
- Stars
- 133k
- Forks
- 15.7k
- Avg merge
- 1d 10h
- Merged PRs (30d)
- 153
Description
I had an issue running ComfyUI after manual installation on Windows 10:
```
RuntimeError: Failed to import ... because of the following error (look up to see its traceback):
cannot import name 'DEFAULT_CIPHERS' from 'urllib3.util.ssl' (C:\Users\user\anaconda3\lib\site-packages\urllib3\util\ssl.py)
```
Reinstalling urrlib3 didn't help
Environment:
OS / hardware: Win10
Python version 3.10.6
Seems like no one else posted here about this, so here's a working solution I found:
[> It looks like you have installed urllib3 version > 2, which is incompatible with some other packages that you may have installed, such as botocore and google-auth. This may cause errors or unexpected behavior when you use those packages. You may want to downgrade urllib3 to a compatible version, such as 1.26.7, using this command:
> ### pip install --upgrade 'urllib3==1.26.7' --user
](https://github.com/imartinez/privateGPT/issues/482#issuecomment-1563705861)
Contributor guide
Assessment
This issue has not been assessed yet.