sebo-b / warp

Workspace Autonomous Reservation Program - a system to help you efficiently manage hybrid (assigned, hot-desks, etc) office space.
MIT License
139 stars 60 forks source link

error while loading shared libraries: libpcre.so.3 #33

Closed christianh17 closed 7 months ago

christianh17 commented 1 year ago

Sorry, but the error persists. I just tried to get it working but got the same error. I used a fresh debian inside proxmox. The hints from the closed issue regarding the same problem did not help. Do you have an idea what to do? Kind regards Tueftler

MerlinsSake commented 12 months ago

I had the same problem I solved this by editing the Dockerfile as follows

After the following lines: FROM python:3-slim WORKDIR /opt/warp

I added the lines:

RUN apt-get update RUN apt-get install -y build-essential libpq-dev libpcre3 libpcre3-dev

In the second env, where the first is copied, this librarys are missing

donbalon4 commented 10 months ago

@MerlinsSake thank you, your solution worked for me too!

Hiten1928 commented 8 months ago

@MerlinsSake Do you know if there is anything that fixed the issue, I am still facing it on MacOS. Here is the stack trace on startup:

warp-warp-demo-db-1     | creating configuration files ... ok
warp-warp-demo-wsgi-1   | uwsgi: error while loading shared libraries: libpcre.so.3: cannot open shared object file: No such file or directory
warp-warp-demo-db-1     | running bootstrap script ... ok

Thank you in advance! I am kinda stuck and have tried pretty much all the instructions on stackoverflow or the past issue this has been linked to.