diff options
author | Vee9ahd1 <[email protected]> | 2019-06-24 00:22:07 -0400 |
---|---|---|
committer | Vee9ahd1 <[email protected]> | 2019-06-24 00:22:07 -0400 |
commit | cf57f596548d4f0468fc41f51f2aa10f068e95b6 (patch) | |
tree | c35036315b5b1a51815b257ffdc31d24619efdd8 | |
parent | 8c4ab77587efcbac79e939c7162785aad9364134 (diff) |
added more troubleshooting info
-rw-r--r-- | README.md | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -20,14 +20,17 @@ gantools --username [email protected] --password mypassword123 --nframes 20 --k ``` 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 +### How do I open the terminal emulator / command prompt? +Windows: press the Windows key and the r key at the same time and then run `cmd.exe` in the dialog that pops up. +Mac: run Terminal.app in your /Applications/Utilities directory. +Linux: install gentoo. +### Syntax error / command not found / etc. on Windows +Did you check "add Python to PATH" in the installer? Probably not. Reinstall and be sure to do that. +### SSL missing issuer certificate. ``` "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: +AFAIK this is a MacOS only issue. Look in the Python3 install folder and you'll see a file called `Install Certificates.command`. Double click to run it. If that doesn't work (or if you installed Python with brew) try this: ``` pip3 install --upgrade certifi ``` |