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
I had lots of difficulties to install SUNO-AI / Bark into VS Code, due to SSL certificate/self-signed cert errors, so want to provide summary steps on how to do it as an alternative (Non secured way):
Again this is bypassing the SSL Certificates and trust issues, thus use at own risk :)
Also had to include the huggingface CA bundle to run the "Preload_models()".
4.1) go to https://huggingface.co/ and downloaded certificate bundle as certificate chain
4.2) save to local folder
4.3) add the lines:
import os
os.environ['REQUESTS_CA_BUNDLE']=r"xxxxxx\huggingface.co.crt" (replace the 'x' with the path)
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
-
I had lots of difficulties to install SUNO-AI / Bark into VS Code, due to SSL certificate/self-signed cert errors, so want to provide summary steps on how to do it as an alternative (Non secured way):
Again this is bypassing the SSL Certificates and trust issues, thus use at own risk :)
4.1) go to https://huggingface.co/ and downloaded certificate bundle as certificate chain
4.2) save to local folder
4.3) add the lines:
import os
os.environ['REQUESTS_CA_BUNDLE']=r"xxxxxx\huggingface.co.crt" (replace the 'x' with the path)
Beta Was this translation helpful? Give feedback.
All reactions