Re: saving path to modules permanently

2007-02-16 Thread Steve Holden
Frank wrote: > Hi, > > I want to create some modules to use them in my programs. Now the > problem is, how to add the path to these modules permanently to the > python search path. > > For example: > > import sys > sys.path.append('path to my modules') > > > works fine for one session but does

saving path to modules permanently

2007-02-16 Thread Frank
Hi, I want to create some modules to use them in my programs. Now the problem is, how to add the path to these modules permanently to the python search path. For example: import sys sys.path.append('path to my modules') works fine for one session but does not save this path permanently. I als