On 15 December 2011 11:10, Роман Сорокин <[email protected]> wrote: > Hello, I'm Roman. > I'm beginner in Python, and I have some problem with installation mod_wsgi > 3.3 on Linux (it has error) and on Windows (Apache don't want startup), > I tried install mod_wsgi 3.1 on Linux, but it requiers python-dev 3.1 pack, > I don't know where from i can download it, research of links of Google don't > give me anything useful. Please, give me workin version mod_wsgi or > python-dev 3.1!
I have forwarded your questions onto the mod_wsgi mailing list. Details of list at: http://code.google.com/p/modwsgi/wiki/WhereToGetHelp?tm=6#Asking_Your_Questions I have done this because I don't use Linux in any serious way so don't know very well the specifics of Linux packaging for different distros or appropriate commands to install them. Other people on the list therefore can better help you with the questions or point you to a summarising blog post of what is required for your specific distro. You will though need to indicate what Linux distro you are using. Also post what commands you have used so far to install it along with the specific error messages you are getting. Am also not a user of Windows either, but generally a startup problem with Apache/mod_wsgi on Windows is because of one of the following: - Using a 64 bit Apache with 32 bit mod_wsgi.so from download site. You can't mix 32/64 bit and need to use a 32 bit Apache. - Using a 64 bit Python with 32 bit mod_wsgi.so from download site. You can't mix 32/64 bit and need to use a 32 bit Python. - Python was installed for current user only. You must install Python for all users when installing it and not just the current user. 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.
