Mark Lacas wrote: > I note that the first line of tablebrowser.py is: > #!/usr/bin/env python > > My python is at: > /usr/bin/python #!/usr/bin/env python will work at that location because env returns the location that it finds the binary "python" at. In your case it will return "/usr/bin/python" -Derek