How do I add permanently to Pythons sys.path?

cnb circularfunc at yahoo.se
Tue Sep 16 16:16:47 EDT 2008


On Sep 16, 7:49 pm, "Aaron \"Castironpi\" Brady"
<castiro... at gmail.com> wrote:
> On Sep 16, 10:13 am, cnb <circularf... at yahoo.se> wrote:
>
>
>
> > >>> sys.path
>
> > ['C:\\Python25\\Progs\\NatLangProc', 'C:\\Python25\\Lib\\idlelib', 'C:\
> > \Windows\\system32\\python25.zip', 'C:\\Python25\\lib\\site-packages\
> > \orange', 'C:\\Python25\\lib\\site-packages\\orange\\OrangeWidgets',
> > 'C:\\Python25\\lib\\site-packages\\orange\\OrangeCanvas', 'C:\
> > \Python25\\DLLs', 'C:\\Python25\\lib', 'C:\\Python25\\lib\\plat-win',
> > 'C:\\Python25\\lib\\lib-tk', 'C:\\Python25', 'C:\\Python25\\lib\\site-
> > packages', 'C:\\Python25\\lib\\site-packages\\Numeric', 'C:\\Python25\
> > \lib\\site-packages\\PIL']
>
> > Now I have my personal programs in C:/Python25/Progs/
>
> > How do I add so that I can just do "import somefile" from anywhere in
> > that directory in the interpreter and it can load files from other
> > folders in that directory.
>
> Add a file: \Lib\site-packages\locals.pth
>
> with contents, path to the directory you want to add (/python25/progs/)



And we have a winner!


Now it works. Both doing import and loading form fiel with C-c C-l

However jsut including C:/Python/Progs wasn't enough. I had to add the
folder inside that that contains the files i needed.

so how do i add all files within progs? is there something like C:/
python25/progs/* ?



More information about the Python-list mailing list