On Fri, Jan 7, 2011 at 9:46 PM, Garland Fulton <stacks...@gmail.com> wrote: <snip> > 1 #!/bin/bash/python <snip> > What is > wrong with my shebang line?
Its path is invalid (unless you're using a *very* weird system). /bin/bash is the bash shell executable; bash is completely unrelated to Python. Further, /bin/bash is a file, not a directory. The shebang for Python is normally one of the following: #!/usr/bin/env python #!/usr/bin/python Cheers, Chris -- http://blog.rebertia.com -- http://mail.python.org/mailman/listinfo/python-list