You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File [d:](file:///D:/)文件\AI\OpenVoice.venv\lib\site-packages\urllib3\connectionpool.py:1093, in HTTPSConnectionPool._validate_conn(self, conn)
1092 if conn.is_closed:
-> 1093 conn.connect()
1095 # TODO revise this, see https://github.com/urllib3/urllib3/issues/2791
SSLError: (MaxRetryError("HTTPSConnectionPool(host='huggingface.co', port=443): Max retries exceeded with url: /M4869/WavMark/resolve/main/step59000_snr39.99_pesq4.35_BERP_none0.30_mean1.81_std1.81.model.pkl (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1129)')))"), '(Request ID: 8355fe6c-1195-4c7c-9cc9-20aa21f05ad6)')
Output is truncated. View as a scrollable element or open in a text editor. Adjust cell output settings...
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
When I run V1, I get the following error:
SSLCertVerificationError Traceback (most recent call last)
File [d:](file:///D:/)文件\AI\OpenVoice.venv\lib\site-packages\urllib3\connectionpool.py:464, in HTTPConnectionPool._make_request(self, conn, method, url, body, headers, retries, timeout, chunked, response_conn, preload_content, decode_content, enforce_content_length)
463 try:
--> 464 self._validate_conn(conn)
465 except (SocketTimeout, BaseSSLError) as e:
File [d:](file:///D:/)文件\AI\OpenVoice.venv\lib\site-packages\urllib3\connectionpool.py:1093, in HTTPSConnectionPool._validate_conn(self, conn)
1092 if conn.is_closed:
-> 1093 conn.connect()
1095 # TODO revise this, see https://github.com/urllib3/urllib3/issues/2791
File [d:](file:///D:/)文件\AI\OpenVoice.venv\lib\site-packages\urllib3\connection.py:741, in HTTPSConnection.connect(self)
739 server_hostname_rm_dot = server_hostname.rstrip(".")
--> 741 sock_and_verified = _ssl_wrap_socket_and_match_hostname(
742 sock=sock,
743 cert_reqs=self.cert_reqs,
744 ssl_version=self.ssl_version,
745 ssl_minimum_version=self.ssl_minimum_version,
746 ssl_maximum_version=self.ssl_maximum_version,
747 ca_certs=self.ca_certs,
748 ca_cert_dir=self.ca_cert_dir,
749 ca_cert_data=self.ca_cert_data,
750 cert_file=self.cert_file,
751 key_file=self.key_file,
...
--> 698 raise SSLError(e, request=request)
700 raise ConnectionError(e, request=request)
702 except ClosedPoolError as e:
SSLError: (MaxRetryError("HTTPSConnectionPool(host='huggingface.co', port=443): Max retries exceeded with url: /M4869/WavMark/resolve/main/step59000_snr39.99_pesq4.35_BERP_none0.30_mean1.81_std1.81.model.pkl (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1129)')))"), '(Request ID: 8355fe6c-1195-4c7c-9cc9-20aa21f05ad6)')
Output is truncated. View as a scrollable element or open in a text editor. Adjust cell output settings...
Beta Was this translation helpful? Give feedback.
All reactions