[[EMAIL PROTECTED] wrote]
> Hi All,
> 
> When i done the next:
> 
> >>> import sys
> >>> sys.path.append('c:\Python22\Lib\site-packages\piddle')
> 
> , piddle has worked well.
> 
> Where can modify the pythonpath centrally?

A few ways:

- You can set a PYTHONPATH environment variable with this directory in
  it.
- You can create a .pth file with that directory on a single line by
  itself and then place that .pth file somewhere on the existng
  sys.path.
- On Windows you can edit the following registry entry:
      HKLM/Software/Python/PythonCore/2.2/PythonPath/


Cheers,
Trent

-- 
Trent Mick
[EMAIL PROTECTED]
_______________________________________________
ActivePython mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
Other options: http://listserv.ActiveState.com/mailman/listinfo/ActivePython

Reply via email to