Re: Python without wrapper script

2009-12-03 Thread Jonathan Hartley
On Dec 3, 3:13 pm, Jonathan Hartley wrote: > On Dec 2, 4:12 pm, Ulrich Eckhardt wrote: > > > > > eric.frederich wrote: > > > Is there a way to set up environment variables in python itself > > > without having a wrapper script. > > > Yes, sure, you can set environment variables... > > > > The wra

Re: Python without wrapper script

2009-12-03 Thread Jonathan Hartley
On Dec 2, 4:12 pm, Ulrich Eckhardt wrote: > eric.frederich wrote: > > Is there a way to set up environment variables in python itself > > without having a wrapper script. > > Yes, sure, you can set environment variables... > > > The wrapper script is now something like > > > #!/bin/bash > > >

Re: Python without wrapper script

2009-12-02 Thread Hans Mulder
Ulrich Eckhardt wrote: eric.frederich wrote: Is there a way to set up environment variables in python itself without having a wrapper script. Yes, sure, you can set environment variables... The wrapper script is now something like #!/bin/bash export LD_LIBRARY_PATH="/some/thing/lib:$LD

Re: Python without wrapper script

2009-12-02 Thread Jean-Michel Pichavant
eric.frederich wrote: Is there a way to set up environment variables in python itself without having a wrapper script. The wrapper script is now something like #!/bin/bash export LD_LIBRARY_PATH="/some/thing/lib:$LD_LIBRARY_PATH" export LD_LIBRARY_PATH="/another/thing/lib:$LD_LIBRARY_PATH"

Re: Python without wrapper script

2009-12-02 Thread Ulrich Eckhardt
eric.frederich wrote: > Is there a way to set up environment variables in python itself > without having a wrapper script. Yes, sure, you can set environment variables... > The wrapper script is now something like > > #!/bin/bash > > export LD_LIBRARY_PATH="/some/thing/lib:$LD_LIBRARY_PATH"

Python without wrapper script

2009-12-02 Thread eric.frederich
Is there a way to set up environment variables in python itself without having a wrapper script. The wrapper script is now something like #!/bin/bash export LD_LIBRARY_PATH="/some/thing/lib:$LD_LIBRARY_PATH" export LD_LIBRARY_PATH="/another/thing/lib:$LD_LIBRARY_PATH" export PATH="/some/thi