Re: [BangPypers] How to run *.py scripts which interfaces with modules

2010-07-14 Thread Noufal Ibrahim
steve writes: [...] > $ export PYTHONPATH="/home/<$user>/...:/some/other/path:..." [...] OR a "/usr/bin/env PYTHONPATH=$PYTHONPATH:~/extra/path python" as your interpreter. I generally don't like doing things that linger. -- ___ BangPypers mailing

Re: [BangPypers] How to run *.py scripts which interfaces with modules

2010-07-14 Thread steve
Hi, On 07/14/2010 07:43 PM, स्वक्ष wrote: On Wed, Jul 14, 2010 at 18:04, Naresh Khalasi wrote: Hi, The root directory (where your package starts) should be added to PYTHONPATH environment variable. e.g. if your root directory is /home//projects/mailman export PYTHONPATH=$PYTHONPATH:/ho

Re: [BangPypers] How to run *.py scripts which interfaces with modules

2010-07-14 Thread स्वक्ष
On Wed, Jul 14, 2010 at 18:04, Naresh Khalasi wrote: > Hi, > > The root directory (where your package starts) should be added to PYTHONPATH > environment variable. > e.g. if your root directory is /home//projects/mailman > export PYTHONPATH=$PYTHONPATH:/home//projects/mailman > > Once you do that

Re: [BangPypers] How to run *.py scripts which interfaces with modules

2010-07-14 Thread Naresh Khalasi
Hi, The root directory (where your package starts) should be added to PYTHONPATH environment variable. e.g. if your root directory is /home//projects/mailman export PYTHONPATH=$PYTHONPATH:/home//projects/mailman Once you do that you "cd" in the project directory and execute by saying python Mailm