mirror of
https://github.com/AbdBarho/stable-diffusion-webui-docker.git
synced 2026-02-03 22:24:19 +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/
|
chmod 766 ~/.cache/
|
||||||
|
|
||||||
shopt -s nullglob
|
shopt -s nullglob
|
||||||
list=(./extensions/*/requirements.txt)
|
list=(./extensions/*/install.py)
|
||||||
for req in "${list[@]}"; do
|
for installscript in "${list[@]}"; do
|
||||||
pip install -r "$req"
|
PYTHONPATH=${ROOT} python "$installscript"
|
||||||
done
|
done
|
||||||
|
|
||||||
if [ -f "/data/config/auto/startup.sh" ]; then
|
if [ -f "/data/config/auto/startup.sh" ]; then
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue