Last active
December 19, 2022 20:00
-
-
Save monk1337/8df43511debb6241747e80569bd03ce7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Use global flag | |
pip install gensim config --global http.sslVerify false | |
#on conda, disable the ssl | |
conda config --set ssl_verify False | |
conda update conda | |
# while downloading anything | |
import ssl | |
ssl._create_default_https_context = ssl._create_unverified_context | |
#while transformers and other uses | |
os.environ["CURL_CA_BUNDLE"]="" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment