SSL Certificates Error

When running the following code, SSL Certification Verification Failed was returned:

from langchain.llms import HuggingFaceHub
import os

os.environ[“HUGGINGFACEHUB_API_TOKEN”] = “API_key_here”

llm = HuggingFaceHub(repo_id = “google/flan-t5-large”)

our_query = “What is the currency of Nigeria?”

completion = llm(our_query)

print(completion)