diff options
author | Vee9ahd1 <[email protected]> | 2019-05-20 22:37:44 -0400 |
---|---|---|
committer | Vee9ahd1 <[email protected]> | 2019-05-20 22:37:44 -0400 |
commit | de5c741e6baeefdde6e481dd33a1a8fe391eefb7 (patch) | |
tree | 9695e107a83176cbbbbb3cc18dcc346fc8cf488b | |
parent | e3b27b04ea13d830e4855136225a34abcf7798d6 (diff) |
added troubleshooting for urllib ssl failure error
-rw-r--r-- | README.md | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -17,3 +17,15 @@ gantools -h gantools --username [email protected] --password mypassword123 --nframes 20 --keys 7968340a72eabab735d04dba 0416461072e5e22fd6d1637c c37d216dfd865aa7397db242 ``` where the hexidecimal strings after `--keys` are the IDs found in an image's ganbreeder URL (e.g. https://ganbreeder.app/i?k=c37d216dfd865aa7397db242 has key: c37d216dfd865aa7397db242). You can list arbitrarily many keys; just be sure to increase your `--nframes` value to compensate (and be prepared for a longer render time). +## Troubleshooting +``` +"urllib.error.URLError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1056)>" +``` +type this: +``` +pip install --upgrade certifi +``` +or on macOS with brew: +``` +pip3 install --upgrade certifi +``` |