Re: [Zope] Re: My Sad Tale Of Woe
----- 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. I thought set was the same. What do? TIA, Nancy ____________________________________________________________________________________ Do you Yahoo!? Everyone is raving about the all-new Yahoo! Mail beta. http://new.mail.yahoo.com
On Thu, Nov 30, 2006 at 08:52:40AM -0800, Nancy Donnelly wrote:
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. I thought set was the same. What do?
If the command: export FOO=bar ... does not work, AFAIK you can't possibly be running bash. Try running "ps" with no arguments to be sure. The first thing it shows should be your current shell, with the program name identified in the CMD column. -- Paul Winkler http://www.slinkp.com
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
participants (3)
-
Dieter Maurer -
Nancy Donnelly -
Paul Winkler