mirror of
https://github.com/AbdBarho/stable-diffusion-webui-docker.git
synced 2026-02-03 14:14:18 +01:00
Modify installation extension dependencies
Perform a full extension installation process instead of just installing dependencies
This commit is contained in:
parent
cdde93b8bb
commit
880c7874ec
|
|
@ -57,9 +57,9 @@ chown -R root ~/.cache/
|
|||
chmod 766 ~/.cache/
|
||||
|
||||
shopt -s nullglob
|
||||
list=(./extensions/*/requirements.txt)
|
||||
for req in "${list[@]}"; do
|
||||
pip install -r "$req"
|
||||
list=(./extensions/*/install.py)
|
||||
for installscript in "${list[@]}"; do
|
||||
PYTHONPATH=${ROOT} python "$installscript"
|
||||
done
|
||||
|
||||
if [ -f "/data/config/auto/startup.sh" ]; then
|
||||
|
|
|
|||
Loading…
Reference in a new issue