mirror of
https://github.com/open-webui/pipelines.git
synced 2026-07-20 15:38:19 -04:00
Unable to pip install llama-index-embeddings-ollama leading to pipeline problems #104
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @UmiVilbig on GitHub (Aug 23, 2024).
I used
/examples/pipelines/rag/llamaindex_ollama_github_pipeline.pyand uploaded the file through the main UI. I then get a status 500 but upon refreshing the page the pipeline exists in the page.After the pipeline has been uploaded, if you restart the container you are now in a perpetual container restart loop. The error installing package causes the container to crash, it restarts, and hits the same blocker.
Looking through the logs on docker, it looks like the problem stems from the package
llama-index-embeddings-ollama. I tried pip installing it inside the container and I get the errorcould not find a version that satisfies the requirement llama-index-embeddings-ollama (from versions: none)This could just be a python version problem
@nickibarlowSDI commented on GitHub (Sep 6, 2024):
An infinite "updating but incompatible" loop happens to me when I run: docker run -d -p 9099:9099 --add-host=host.docker.internal:host-gateway -v pipelines:/app/pipelines --name pipelines-official --restart always ghcr.io/open-webui/pipelines:main
ex: llama-index-cli 0.1.13 requires llama-index-core<0.11.0,>=0.10.11.post1, but you have llama-index-core 0.11.6 which is incompatible.
I believe this is caused by the
and/or the lack of a GITHUB_TOKEN for one of the default pipelines.