missing flag in wget download example

The documentation shows a wget command to download the gfpgan files and was missing the `-P` flag
This commit is contained in:
Rainer Bernhardt 2022-10-02 18:43:42 +02:00 committed by Lincoln Stein
parent 0a217b5f15
commit 40828df663

View File

@ -31,7 +31,7 @@ into **src/gfpgan/experiments/pretrained_models**. On Mac and Linux systems,
here's how you'd do it using **wget**: here's how you'd do it using **wget**:
```bash ```bash
wget https://github.com/TencentARC/GFPGAN/releases/download/v1.3.0/GFPGANv1.4.pth src/gfpgan/experiments/pretrained_models/ wget https://github.com/TencentARC/GFPGAN/releases/download/v1.3.0/GFPGANv1.4.pth -P src/gfpgan/experiments/pretrained_models/
``` ```
Make sure that you're in the InvokeAI directory when you do this. Make sure that you're in the InvokeAI directory when you do this.