diff options
author | Bernard Maltais <bmaltais@gmail.com> | 2022-09-09 21:05:23 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-09-09 21:27:54 +0000 |
commit | c529532f8bde8ceded0cf5661a38b8c7bb634015 (patch) | |
tree | 69cce4f171a9954da8f27be10ace88c202c47629 /README.md | |
parent | fed90189c3cef9f732ef7f2b4d80baa6f4c8121d (diff) | |
download | stable-diffusion-webui-gfx803-c529532f8bde8ceded0cf5661a38b8c7bb634015.tar.gz stable-diffusion-webui-gfx803-c529532f8bde8ceded0cf5661a38b8c7bb634015.tar.bz2 stable-diffusion-webui-gfx803-c529532f8bde8ceded0cf5661a38b8c7bb634015.zip |
Updare README with conda install instructions
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -177,12 +177,16 @@ Edit values to your liking and the next time you launch the program they will be Alternatively, here are instructions for installing under Windows 11 WSL2, everything by hand:
```bash
-mkdir automatic1111
-cd automatic1111
+# install conda (if not already done)
+wget https://repo.anaconda.com/archive/Anaconda3-2022.05-Linux-x86_64.sh
+chmod +x Anaconda3-2022.05-Linux-x86_64.sh
+./Anaconda3-2022.05-Linux-x86_64.sh
+# Clone webui repo
git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
cd stable-diffusion-webui
+# Create and activate conda env
conda env create -f environment-wsl2.yaml
conda activate automatic
@@ -218,10 +222,6 @@ wget https://github.com/TencentARC/GFPGAN/releases/download/v1.3.0/GFPGANv1.3.pt ls model.ckpt
```
-> Note: the directory structure for manual instruction has been changed on 2022-09-09 to match automatic installation: previosuly
-> webui was in a subdirectory of stable diffusion, now it's the reverse. If you followed manual installation before the
-> chage, you can still use the program with you existing directory sctructure.
-
After that the installation is finished.
Run the command to start web ui:
|