What's going on here ?!
$ /usr/bin/env which python /home/dbanas/.local/bin/python $ /home/dbanas/.local/bin/python -V Python 2.7.3 -- EPD_free 7.3-2 (64-bit) $ /usr/bin/env python -V Python 2.4.3
I stumbled upon this while trying to debug one of my Python scripts that uses
#! /usr/bin/env python
First line. And I do not understand how this is possible.
Thanks! -db
I just noticed that '~ / .local / bin / python' is a link, not an executable. Does this damage the stream '/ usr / bin / env ...'?
Perhaps this is a more concise way of expressing a fundamental riddle ?:
$ env python -V Python 2.4.3 $ python -V Python 2.7.3 -- EPD_free 7.3-2 (64-bit)
He just keeps getting funny things and funny things:
$ which python /home/dbanas/.local/bin/python $ python -c 'import sys; print sys.executable' /usr/bin/python
source share