gpt4 book ai didi

python - 如何开始在 Linux 主机上使用 python

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:45:30 24 4
gpt4 key购买 nike

我想为我的网站使用 python。我有一个来自 BigRock 的单域 Linux 主机。然后我通过 SSH 连接到我的网站,检查它是否安装了 Python,所以我执行了 >>python -v 结果发现 python 2.6.6 已经安装。 BigRock 支持团队让我输入:

*Options +ExecCGI
**AddHandler cgi-script .py***

在 .htaccess 文件中。

但是在完成所有这些之后,当我尝试使用 hello.py 文件打印 Hello 时,它返回 500 内部服务器错误。我该怎么办?

最佳答案

添加内容类型解决了问题。

对于那些面临同样问题的人,这是检查 list :

确保你已经安装了 Python:

You can SSH your website then type [ python -v ] on terminal it will show you which version of python is Installed.

确保您在 .htaccess 文件中有以下代码。要查看 .htaccess 文件,请转到旧文件管理器勾选显示隐藏的点文件。

Add following code to it

    Options +ExecCGI
AddHandler cgi-script .py

Now place all your .py files in cgi-bin folder and set permission to 755

Windows users do not forget to include python location on first line. And type of content on second line:

Location:/home/user/public_html/cgi-bin/test.py

示例程序:

#!/usr/bin/python

print "Content-type: text/html\n\n";

print "<html><head>";

print "<title>CGI Test</title>";

print "</head><body>";

print "<p>Test page using Python</p>";

print "</body></html>";

关于python - 如何开始在 Linux 主机上使用 python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37650192/

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