如何在我的 Web 服务器上运行 Python 脚本?
我刚刚开始学习Python,现在很迷茫。我想在通过 Hosting24.com 托管的服务器上运行我的脚本。他们的常见问题解答说他们支持 Python,但我不知道在哪里放置我的脚本以使其运行。
我的根目录中有一个名为 cgi-bin 的文件夹,我猜这就是我放置脚本的地方?有人可以向我解释这是如何工作的吗?
I've just started learning Python, and I'm pretty lost right now. I want to run my script on my server that is hosted through hosting24.com. Their FAQ says they support Python, but I have no clue where to put my script for it to run.
There is a folder called cgi-bin in my root, I'm guessing that is where I put my script? Can someone explain to me how this works?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
非常简单,您可以将 Python 脚本重命名为“pythonscript.cgi”。
将其发布到您的 cgi-bin 目录中,添加适当的权限并浏览到它。
这是一个很好的链接,您可以从这里开始。
这是另一个不错的.
希望有帮助。
编辑(09/12/2015):第二个链接早已被删除。将其替换为提供原始信息引用的信息。
Very simply, you can rename your Python script to "pythonscript.cgi".
Post that in your cgi-bin directory, add the appropriate permissions and browse to it.
This is a great link you can start with.
Here's another good one.
Hope that helps.
EDIT (09/12/2015): The second link has long been removed. Replaced it with one that provides information referenced from the original.