Something about #!/usr/bin/env python
This '#!/usr/bin/env python' will get you a python run by
>./yourfile.py
instead
>python yourfile.py
but you can
'#!/usr/local/bin/python '
its use a specific python path So it's different from first paragraph
and make your decision between 2 way :)
>./yourfile.py
instead
>python yourfile.py
but you can
'#!/usr/local/bin/python '
its use a specific python path So it's different from first paragraph
and make your decision between 2 way :)
Comments
Post a Comment