I am distributing a python program and get complaints that in environments where the link /usr/bin/python
opints to python3 people have to edit the shebang line or call the script with python2 explicitly. I could write python2 in the shebang line but I fear incompatibilities.
Is python2 present in every (or at least every Linux) environment?
I am using autotools, so I also appreciate autotools magic tipps.