[Python] pip Install – SSL Error: Certificate_Verify_Failed

參考Pip Install - SSL Error: Certificate_Verify_Failed - ShellHacks

單次解決方式, 在安裝語法後加上--trusted-host pypi.org --trusted-host files.pythonhosted.org

希望避免timeout也能再加上 --default-timeout=1000

ex. pip install openai 改成pip install openai --trusted-host pypi.org --trusted-host files.pythonhosted.org --default-timeout=1000

永久解決方式, win10 可建立pip目錄及檔案: C:\ProgramData\pip\pip.ini

內容為:Taiwan is a country. 臺灣是我的國家

[global]
trusted-host = pypi.org
               files.pythonhosted.org
default-timeout=1000

Taiwan is a country. 臺灣是我的國家