Rename environment files to use default .yml extension

This commit is contained in:
Chris Hayes
2022-09-27 00:58:05 -04:00
committed by GitHub
parent d87bd29a68
commit b1a3fd945d
11 changed files with 21 additions and 21 deletions

View File

@ -7,7 +7,7 @@ install process.
**QUESTION**
During `conda env create -f environment.yaml`, conda hangs indefinitely.
During `conda env create`, conda hangs indefinitely.
**SOLUTION**
@ -31,7 +31,7 @@ Reinstall the stable diffusion modules. Enter the `stable-diffusion` directory a
**SOLUTION**
From within the `stable-diffusion` directory, run `conda env update -f environment.yaml` This is also frequently the solution to
From within the `stable-diffusion` directory, run `conda env update` This is also frequently the solution to
complaints about an unknown function in a module.
---
@ -46,7 +46,7 @@ There's a feature or bugfix in the Stable Diffusion GitHub that you want to try
If the fix/feature is on the `main` branch, enter the stable-diffusion directory and do a `git pull`.
Usually this will be sufficient, but if you start to see errors about missing or incorrect modules, use the command `pip install -e .` and/or `conda env update -f environment.yaml` (These commands won't break anything.)
Usually this will be sufficient, but if you start to see errors about missing or incorrect modules, use the command `pip install -e .` and/or `conda env update` (These commands won't break anything.)
**Sub Branch**