我是一名 PHP 程序员,但我想学习 Python。我对如何实际执行脚本有点困惑。我在我的网络服务器根目录中创建了 test.py,在我编写的文件中:
#!/usr/bin/python
import jon.cgi as cgi
import jon.fcgi as fcgi
print "Content-type: text/html"
print "hello world"
我的服务器正在运行 Litespeed,遵循以下教程:http ://www.litespeedtech.com/support/wiki/doku.php?id=litespeed_wiki:python_fcgi我已经安装了 Jon 的 CGI。
但是当我在浏览器中导航到脚本时,它只会打印完整的代码,就好像它没有解析它一样。非常感谢任何帮助,谢谢。