30 Nov
2006
30 Nov
'06
7:51 p.m.
Nancy Donnelly wrote at 2006-11-30 08:52 -0800:
----- Original Message ---- From: Paul Winkler <pw_lists@slinkp.com>
What shell are you using? That's not how you set an environment variable in any of the bourne-style shells (sh, bash, ksh). For those, you would use:
export PYTHONPATH=/usr/local/zope/278/lib/python:$PYTHONPATH
I'm using bash. I tried export and it didn't recognize it.
If you use "bash", then it will recognize "export". Use it the way, you see it above or PYTHONPATH=/usr/local/zope/278/lib/python:$PYTHONPATH export PYTHONPATH Be careful: no whitespace around the "="! -- Dieter