python choice in some of ROS packages
I wonder why some .py files start with
#!/usr/bin/python
like in /camera_calibration/cameracalibrator.py while the others are with
#!/usr/bin/env python
like in /rosbag/bag2png.py
The choice could be critical if one have two copies of python, which is the case in Mac OSX. I have a default preinstalled python version (/usr/bin/python) and the other one is installed through homebrew (is in my PATH).
And a side question have somebody installed ros with a default python?