如何在 Apache 下使用 Python 3.0?
我已经搜索了很多关于如何在 Apache 下使用 Python 3 的信息。如果任何地方都有演练,它都会隐藏得很好。因此,希望 Python 专业人士中的一位能够快速了解一下它是如何完成的!
我在 Windows 7 上使用最新版本的 XAMPP。
I've searched for ages on how to use Python 3 under Apache. If there is a walkthrough anywhere, it's very well hidden. Thus, hopefully, one of you Python professionals could make a quick 1-2-3 on how it's done!
I'm on Windows 7 using the newest version of XAMPP.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
仅在 Python 3.1 上:
Only on Python 3.1:
Python 3.0 仅通过 CGI 支持。将您的 CGI 脚本放入
cgi-bin\
中。如果您愿意查看较新的版本,mod_wsgi 中提供了初步支持(但您可能必须自己构建它)。Python 3.0 is only supported via CGI. Put your CGI script in
cgi-bin\
. If you're willing to look at newer versions, preliminary support is available in mod_wsgi (but you'll probably have to build it yourself).如果您想编写 Python 3 WSGI 应用程序,请尝试 uwsgi。我更喜欢 nginx & uwsgi本人。
If you want to write Python 3 WSGI apps try uwsgi. I prefer nginx & uwsgi myself.