Quiero ejecutar el archivo python en el navegador. He instalado apache. y configuró el archivo httd.conf
. He creado el archivo test.py
. Luego intenté ejecutar test.py
con mi navegador escribiendo htt://localhost/test.py
. Cuando hago esto, me sale el siguiente error:Ejecutar un archivo .py en el navegador
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
En mi registro de errores
[Thu Jul 07 18:39:55 2011] [error] [client 127.0.0.1] (OS 2)The system cannot find the file specified. : couldn't create child process: 720002: test.py
[Thu Jul 07 18:39:55 2011] [error] [client 127.0.0.1] (OS 2)The system cannot find the file specified. : couldn't spawn child process: C:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs/test.py
Cuál podría ser el problema aquí?
Ejecución de Python en el navegador significa que tiene que configurar el navegador, no su servidor. Cuando ejecuta Python en su navegador, su navegador (FireFox, IE, Opera, Safari, etc.) ejecuta Python. Esto no tiene nada que ver con Apache. ¿Qué estás ** realmente ** tratando de hacer? –
@ S.Lott ¿Y cómo configurar el navegador? –