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 Lincoln Stein
parent 8366eee9c2
commit fb0341fdbf
9 changed files with 24 additions and 46 deletions

View File

@ -13,7 +13,7 @@ incomplete installations or crashes during the install process.
### **QUESTION**
During `conda env create -f environment.yaml`, conda hangs indefinitely.
During `conda env create`, conda hangs indefinitely.
If it is because of the last PIP step (usually stuck in the Git Clone step, you can check the detailed log by this method):
```bash
@ -67,8 +67,8 @@ 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 complaints about an unknown function in a module.
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.
---
@ -83,8 +83,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
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.)
`pip install -e .` and/or