Re: [Tutor] sys.path, managing modules and packages

2007-04-26 Thread Kent Johnson
Switanek, Nick wrote: > Can someone help me better understand how I ought to manage the modules > and packages that I download? I often find that I can’t use the code > I’ve just downloaded, despite putting it into Lib/site-packages. site-packages should just contain the module or package itself

Re: [Tutor] sys.path, managing modules and packages

2007-04-25 Thread Rikard Bosnjakovic
On 4/26/07, Switanek, Nick <[EMAIL PROTECTED]> wrote: > Can someone help me better understand how I ought to manage the modules and > packages that I download? I often find that I can't use the code I've just > downloaded, despite putting it into Lib/site-packages. Often I've added the > subdirect

[Tutor] sys.path, managing modules and packages

2007-04-25 Thread Switanek, Nick
Can someone help me better understand how I ought to manage the modules and packages that I download? I often find that I can't use the code I've just downloaded, despite putting it into Lib/site-packages. Often I've added the subdirectory path via sys.path.append, but this seems to go only one lev