在我的网页上运行Python 3.3

时间:2014-11-04 23:44:44

标签: cgi webpage python-3.3

对于纯粹的教育推理,我想知道如何运行类似于下面的Python 3.3脚本。我知道我需要将其重命名为index.cgi,并将其放入cgi-bin我还能做什么?我正在使用Heliohost,因此他们可以编译Python。我也将file_name.txt放入cgi-bin

file=open('file_name.txt')
print(file.read())
print('We just read the file')

感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

有一件事是你必须确保权限允许文件由Web服务器用户执行。

一般:

# chmod 755 index.cgi