I am installing matrix synapse server from source in Debian 10. installing synapse from source was done as in https://github.com/matrix-org/synapse/blob/master/INSTALL.md#installing-from... Next I went on to install the postgres. https://github.com/matrix-org/synapse/blob/master/docs/postgres.md
When I ran the command ~/synapse/env/bin/pip install "matrix-synapse[postgres]" I get the error message as specified in the file attached.
How can I move further after fixing this error. Please help.
with Thanks & Regards
iGNUjee Free Software Enthusiast -- Securely sent with Tutanota. Claim your encrypted mailbox today! https://tutanota.com
Hello Tanzeem,
tanzeem@tutanota.com writes:
I am installing matrix synapse server from source in Debian 10. I get the error message as specified in the file attached. How can I move further after fixing this error. Please help.
The relevant lines from your log are:
./psycopg/psycopg.h:35:10: fatal error: Python.h: No such file or directory #include <Python.h> ^~~~~~~~~~ compilation terminated.
This means that you're missing python development package on Debian. You can install it by:
sudo apt-get install -y python3-dev
Expect more missing packages. Let me know how it goes.
Regards, Gokul Das B