gpt4 book ai didi

python - Numpy 和 CGI​​ 的问题

转载 作者:太空宇宙 更新时间:2023-11-03 19:21:57 24 4
gpt4 key购买 nike

我决定创建一个项目,对用户的给定输入执行计算。

我安装了 Python 2.7.2 和 Numpy 1.6.1。我正在运行安装了 apache2 的 Ubuntu 11.10 64 位。我的 .cgi 文件位于/usr/lib/cgi-bin 中。第一个脚本 math.cgi 如下所示:

#!/usr/bin/python

from numpy import *
from numpy.linalg import *
b = array([9,8])
a = array([[3,1], [1,2]])
x = solve(a,b)
print x

我可以通过在/usr/lib/cgi-bin 中输入 python math.cgi 来运行它并获得正确的输出。我使用了 chmod +x math.cgi。但是当我看http://127.0.1.1/cgi-bin/math.cgi时我收到内部服务器错误 500。

有谁知道我需要修复什么,例如 http://127.0.1.1/cgi-bin/math.cgi也会给出正确的输出吗?

最佳答案

您必须先打印标题,如描述的here

print "Content-Type: text/html"     # HTML is following
print # blank line, end of headers
print x # your output

关于python - Numpy 和 CGI​​ 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9414122/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com