> On 9 Jul 2016, at 1:01 AM, Ebrahim Karam <[email protected]> wrote: > > When I ran > > ldd > /home/xarxes_ub/python_code/PythEnv/lib/python3.5/site-packages/mod_wsgi/server/mod_wsgi-py35.cpython-35m-i386-linux-gnu.so > > I got the following log > linux-gate.so.1 => (0xb77b6000) > libpthread.so.0 => /lib/i386-linux-gnu/libpthread.so.0 (0xb7478000) > libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xb72cf000) > /lib/ld-linux.so.2 (0xb77b7000)
This is missing a reference to the Python shared library. Are you absolutely sure your Python installation was installed with a shared library? Is this a system Python version or your own Python version? If you had to reinstall Python from source code to get a shared library, you must ensure you did a ‘make distclean’ in the Python source code first before rerunning ‘configure’ with ‘—enable-shared’ and then ‘make && make install’. Graham -- You received this message because you are subscribed to the Google Groups "modwsgi" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/modwsgi. For more options, visit https://groups.google.com/d/optout.
