If you are running into the problem where you try to grab a model from pytorch and get the SSL cert error, then do this:
import ssl
ssl._create_default_https_context = ssl._create_unverified_context
Note that this is “dangerous” — but it at least gets the examples working for ya.