egbert <[EMAIL PROTECTED]> writes:
> When I start the following script in a gnome-terminal:
>
> #!/usr/bin/env python
> import os
> print "hello gnome-terminal"
> print os.environ["PYTHONPATH"]
>
> I see the expected results in the same gnome-terminal window.
>
> However start
Hi
Launcher may spawn a new shell to execute your program. The new shell
wont have your PYTHONPATH environment variable.
Cheers,
Noorul
egbert wrote:
> When I start the following script in a gnome-terminal:
>
> #!/usr/bin/env python
> import os
> print "hello gnome-terminal"
> pr