2008/12/29 gert <[email protected]>: > > but I want it all to be in one folder :-) > When i run python after compiling it in its own folder no mater where > i move it, everything works, so it can't be that hard to make apache > happy too can it ? > > I think it is only missing a pyconfig.h file in the Include directory > for some reason, I think when I have this file everything will work.
Then don't install it in to a generic location, install Python under a directory of its own: ./configure --prefix=/usr/local/python-3.0 Even then, on some platforms this will not mean you can the relocate the directory as moving stuff around will stuff up its ability to find the Python shared library if it was built and installed. Better to install into own directory and then symlink just the 'python3.0' executable into alternate location if you also want it appearing in a standard bin directory. Do not replace normal 'python' for older version with Python 3.0. Graham --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "modwsgi" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/modwsgi?hl=en -~----------~----~----~----~------~----~------~--~---
