From 7b6620a5c6e6efcfa787b576eace4cca2a27a2ba Mon Sep 17 00:00:00 2001 From: ClashSAN <98228077+ClashSAN@users.noreply.github.com> Date: Fri, 15 Sep 2023 01:48:01 -0400 Subject: [PATCH] fix venv command --- Install-and-Run-on-NVidia-GPUs.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Install-and-Run-on-NVidia-GPUs.md b/Install-and-Run-on-NVidia-GPUs.md index 2a1c14f..0338cb4 100644 --- a/Install-and-Run-on-NVidia-GPUs.md +++ b/Install-and-Run-on-NVidia-GPUs.md @@ -25,7 +25,7 @@ The default configuration of web UI should run on most modern GPU, but in some c 3. Some combinations of model and VAE are prone to produce `NansException: A tensor with all NaNs was produced in VAE` resulting in a black image, using the option `--no-half-vae` may help to mitigate this issue. ### Extra Options -1. There are several cross attenuation optimization methods such as `--xformers` or `--opt-sdp-attention`, these can drastically increase performance see [Optimizations](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Optimizations) for more details, experiment with different options as different hardware are suited for different optimizations. If you wish to measure your system's performance, try using [sd-extension-system-info](https://github.com/vladmandic/sd-extension-system-info) extension which features a benchmarking tool and a [database](https://vladmandic.github.io/sd-extension-system-info/pages/benchmark.html) of user submitted results. +1. There are several cross attention optimization methods such as `--xformers` or `--opt-sdp-attention`, these can drastically increase performance see [Optimizations](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Optimizations) for more details, experiment with different options as different hardware are suited for different optimizations. If you wish to measure your system's performance, try using [sd-extension-system-info](https://github.com/vladmandic/sd-extension-system-info) extension which features a benchmarking tool and a [database](https://vladmandic.github.io/sd-extension-system-info/pages/benchmark.html) of user submitted results. 2. add `--autolaunch` to have web UI launch the web browser automatically after web UI has started up. 3. add `--update-check` will notify you when there's a new version of webui. 4. See [Command Line Arguments and Settings @@ -245,7 +245,7 @@ sudo pacman -S pyenv pyenv install 3.10.6 pyenv local 3.10.6 -python -m venv +python -m venv venv ```