Stuck at "Building wheel for hnswlib" #927
Replies: 1 comment
-
Resolved! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
While running the
docker compose up --build
command, the process gets stuck atbuilding wheel for hnswlib
. After 30 mins, it eventually fails with the errorfailed to build wheel for hnswlib
.This is happening because of this commit. In this commit, the command that was installing gcc compiler is commented out. gcc compiler is required to fix this issue
Solution
Uncomment the following line in Dockerfile
RUN apt-get update && apt-get install --no-install-recommends -y git wget libpq-dev gcc python3-dev && pip install psycopg2
Beta Was this translation helpful? Give feedback.
All reactions