aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 8 insertions, 5 deletions
diff --git a/README.md b/README.md
index 82e8b8f..20dae29 100644
--- a/README.md
+++ b/README.md
@@ -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
```