Update TROUBLESHOOT.md

- PR #772
Author: @h4rk8s
This commit is contained in:
H4rk 2022-09-24 08:16:48 +08:00 committed by Lincoln Stein
parent f79874c586
commit 3f53973a2a

View File

@ -17,10 +17,25 @@ During `conda env create -f environment.yaml`, conda hangs indefinitely.
### **SOLUTION** ### **SOLUTION**
Enter the stable-diffusion directory and completely remove the `src` directory and all its contents. Conda sometimes gets stuck at the last PIP step, in which several git repositories are
The safest way to do this is to enter the stable-diffusion directory and give the command cloned and built.
`git clean -f`. If this still doesn't fix the problem, try "conda clean -all" and then restart at
the `conda env create` step. Enter the stable-diffusion directory and completely remove the `src`
directory and all its contents. The safest way to do this is to enter
the stable-diffusion directory and give the command `git clean -f`. If
this still doesn't fix the problem, try "conda clean -all" and then
restart at the `conda env create` step.
To further understand the problem to checking the install lot using this method:
```bash
export PIP_LOG="/tmp/pip_log.txt"
touch ${PIP_LOG}
tail -f ${PIP_LOG} &
conda env create -f environment-mac.yaml --debug --verbose
killall tail
rm ${PIP_LOG}
```
--- ---