Re: #!/usr/bin/python2.3 vs #!/usr/bin/env python2.3

2003-08-18 Thread Federico Di Gregorio
Il mar, 2003-08-12 alle 15:41, Derrick 'dman' Hudson ha scritto: [snip] > | Hmm, after reading everyone's arguments, it seems wiser to use > | #!/usr/bin/python2.3 in order to avoid mixing with local python > | installs. > > Use this in a debian package. > > The difference: on $RANDOM_UNIX_SYSTE

Re: #!/usr/bin/python2.3 vs #!/usr/bin/env python2.3

2003-08-12 Thread Derrick 'dman' Hudson
Here's my perspective on this : On Tue, Aug 12, 2003 at 10:10:57AM +0200, Jérôme Marant wrote: | > #!/usr/bin/env python2.3 helps programs running everywhere, i.e. they | > will work with people that installed python in /usr/local/bin for | > instance. Use this if you are distributing your scrip

Re: #!/usr/bin/python2.3 vs #!/usr/bin/env python2.3

2003-08-12 Thread =?iso-8859-1?b?Suly9G1l?= Marant
Quoting Jérôme Marant <[EMAIL PROTECTED]>: > Quoting John Goerzen <[EMAIL PROTECTED]>: > > > Hello, > > > > Many Python programs use constructs like #!/usr/bin/env python2.3 to load > > themselves. Many others use #!/usr/bin/python2.3. On most Debian > systems, > > these are the same. > > > >

Re: #!/usr/bin/python2.3 vs #!/usr/bin/env python2.3

2003-08-12 Thread =?iso-8859-1?b?Suly9G1l?= Marant
Quoting John Goerzen <[EMAIL PROTECTED]>: > Hello, > > Many Python programs use constructs like #!/usr/bin/env python2.3 to load > themselves. Many others use #!/usr/bin/python2.3. On most Debian systems, > these are the same. > > The submitter in #189473 claims that #!/usr/bin/env python2.3 i

Re: #!/usr/bin/python2.3 vs #!/usr/bin/env python2.3

2003-08-11 Thread Donovan Baarda
On Tue, 2003-08-12 at 06:50, John Goerzen wrote: > Hello, > > Many Python programs use constructs like #!/usr/bin/env python2.3 to load > themselves. Many others use #!/usr/bin/python2.3. On most Debian systems, > these are the same. > > The submitter in #189473 claims that #!/usr/bin/env pytho

Re: #!/usr/bin/python2.3 vs #!/usr/bin/env python2.3

2003-08-11 Thread Matthias Klose
John Goerzen writes: > Hello, > > Many Python programs use constructs like #!/usr/bin/env python2.3 to load > themselves. Many others use #!/usr/bin/python2.3. On most Debian systems, > these are the same. > > The submitter in #189473 claims that #!/usr/bin/env python2.3 is wrong > because he h

#!/usr/bin/python2.3 vs #!/usr/bin/env python2.3

2003-08-11 Thread John Goerzen
Hello, Many Python programs use constructs like #!/usr/bin/env python2.3 to load themselves. Many others use #!/usr/bin/python2.3. On most Debian systems, these are the same. The submitter in #189473 claims that #!/usr/bin/env python2.3 is wrong because he has his own python2.3 on the path prio