Open Kryschuuu opened 1 month ago
Can confirm the same problem for auto
ui on master.
upd.: duplicates #729, workaround is there
workaround from #729 does not work for me. Changing UI does not make a difference
# docker compose --profile auto up --build
...
>[auto stage-1 3/11] RUN --mount=type=cache,target=/root/.cache/pip git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git && cd stable-diffusion-webui && git reset --hard v1.9.4 && pip install -r requirements_versions.txt pip install --upgrade typing-extensions:
0.371 Cloning into 'stable-diffusion-webui'...
3.500 HEAD is now at feee37d7 Merge branch 'dev'
4.060 Requirement already satisfied: pip in /opt/conda/lib/python3.10/site-packages (23.3.1)
4.241 Collecting pip
4.243 Using cached pip-24.2-py3-none-any.whl.metadata (3.6 kB)
4.346 ERROR: Could not find a version that satisfies the requirement install (from versions: none)
4.346 ERROR: No matching distribution found for install
failed to solve: process "/bin/sh -c git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git && cd stable-diffusion-webui && git reset --hard v1.9.4 && pip install -r requirements_versions.txt pip install --upgrade typing-extensions" did not complete successfully: exit code: 1
Hardware / Software
@m4rtini2, if you loook closely, you will notice that the command you running is
pip install -r requirements_versions.txt pip install --upgrade typing-extensions
where it should be
pip install -r requirements_versions.txt && pip install --upgrade typing-extensions
You forgot &&
. That's why the workaround is failing.
@ne-bknn, thank you for the quick help. It works now
This workaround has fixed things for me as well.
I think this is raised as: https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/16520 in the AUTOMATIC1111/stable-diffusion-webui repo.
Has this issue been opened before?
Describe the bug when I try
$ sudo docker compose --profile auto-cpu up --build
thenWhich UI auto-cpu ?
Here is the log
`$ sudo docker compose --profile auto-cpu up --build
Hardware / Software