I want to install mod_wsgi, I'm currently running apache2 on my ubuntu server.
Best Regards,
|
feedback
|
|
You have not said which version of Ubuntu you are running, but I have checked and it appears in the repositories so you can install using
Enter your password when prompted. You will likely need to restart httpd once installation is complete. | |||||
feedback
|
|
mod_wsgi provides a method for running python scripts in the browser. Are you trying to run .py files in the browser? You can also run them through CGI with: AddHandler cgi-script .py make sure the script is chmod 755 and contains a proper path at the top, i.e. #!/usr/bin/python | |||
|
feedback
|