[Solved] Trying to understand installing a CGI script [duplicate]
You have to include the #!/usr/bin/python line on *nix systems to tell the shell how to interpret this script and where your interpreter is in the system. This is called the shebang line. The chmod 755 hello.py command is a unix shell command to change the permissionson of the file and make it executable. Doing … Read more