Replies: 7 comments 9 replies
-
This helped to resolve my issue, I also added logging to locate the bad certificate (of course it was a government issued one :) ). |
Beta Was this translation helpful? Give feedback.
-
I assume the issue is from one of the MUP Srbija certificates? |
Beta Was this translation helpful? Give feedback.
-
Thank you so much, it fixed the bug. |
Beta Was this translation helpful? Give feedback.
-
这是来自QQ邮箱的假期自动回复邮件。
您好,我最近正在休假中,无法亲自回复您的邮件。我将在假期结束后,尽快给您回复。
|
Beta Was this translation helpful? Give feedback.
-
Anyone who is having problems to even find ssl.py: get your python executable location, in that Python folder there is ssl.py and the function listed up |
Beta Was this translation helpful? Give feedback.
-
这是来自QQ邮箱的假期自动回复邮件。
您好,我最近正在休假中,无法亲自回复您的邮件。我将在假期结束后,尽快给您回复。
|
Beta Was this translation helpful? Give feedback.
-
这是来自QQ邮箱的假期自动回复邮件。
您好,我最近正在休假中,无法亲自回复您的邮件。我将在假期结束后,尽快给您回复。
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Cause:
Python bug with loading improperly encoded CA certificates from Windows root store:
https://bugs.python.org/issue35665
Resolution:
Change your
Miniconda3/envs/ldm/lib/ssl.py
code as follows:Explanation:
Code change will make Python verify Windows root store CA certificates one by one and only throw a warning on invalid ones instead of crashing.
Beta Was this translation helpful? Give feedback.
All reactions