mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
parent
f79874c586
commit
3f53973a2a
@ -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}
|
||||||
|
```
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user